counters_max       24 tools/perf/util/values.c 	values->counters_max = 16;
counters_max       25 tools/perf/util/values.c 	values->counterrawid = malloc(values->counters_max
counters_max       27 tools/perf/util/values.c 	values->countername = malloc(values->counters_max
counters_max       51 tools/perf/util/values.c 	if (!values->threads_max || !values->counters_max)
counters_max      105 tools/perf/util/values.c 	values->value[i] = zalloc(values->counters_max * sizeof(**values->value));
counters_max      120 tools/perf/util/values.c 	int i, counters_max = values->counters_max * 2;
counters_max      121 tools/perf/util/values.c 	u64 *counterrawid = realloc(values->counterrawid, counters_max * sizeof(*values->counterrawid));
counters_max      128 tools/perf/util/values.c 	countername = realloc(values->countername, counters_max * sizeof(*values->countername));
counters_max      135 tools/perf/util/values.c 		u64 *value = realloc(values->value[i], counters_max * sizeof(**values->value));
counters_max      143 tools/perf/util/values.c 		for (j = values->counters_max; j < counters_max; j++)
counters_max      149 tools/perf/util/values.c 	values->counters_max = counters_max;
counters_max      171 tools/perf/util/values.c 	if (values->counters == values->counters_max) {
counters_max       12 tools/perf/util/values.h 	int counters_max;