num_other          26 tools/perf/tests/expr.c 	int num_other;
num_other          55 tools/perf/tests/expr.c 			expr__find_other("FOO + BAR + BAZ + BOZO", "FOO", &other, &num_other) == 0);
num_other          56 tools/perf/tests/expr.c 	TEST_ASSERT_VAL("find other", num_other == 3);
num_other          62 tools/perf/tests/expr.c 	for (i = 0; i < num_other; i++)
num_other          24 tools/perf/util/expr.h 		int *num_other);
num_other         187 tools/perf/util/expr.y 			 int num_other)
num_other         193 tools/perf/util/expr.y 	for (i = 0; i < num_other; i++)
num_other         204 tools/perf/util/expr.y 	int num_other;
num_other         210 tools/perf/util/expr.y 	num_other = 0;
num_other         218 tools/perf/util/expr.y 		if (tok == ID && !already_seen(val.id, one, *other, num_other)) {
num_other         219 tools/perf/util/expr.y 			if (num_other >= EXPR_MAX_OTHER - 1) {
num_other         223 tools/perf/util/expr.y 			(*other)[num_other] = strdup(val.id);
num_other         224 tools/perf/util/expr.y 			if (!(*other)[num_other])
num_other         226 tools/perf/util/expr.y 			num_other++;
num_other         229 tools/perf/util/expr.y 	(*other)[num_other] = NULL;
num_other         230 tools/perf/util/expr.y 	*num_otherp = num_other;