HomeSort by relevance Sort by last modified time
    Searched refs:threads_max (Results 1 - 2 of 2) sorted by null

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
values.h 8 int threads_max; member in struct:perf_read_values
values.c 8 values->threads_max = 16;
9 values->pid = malloc(values->threads_max * sizeof(*values->pid));
10 values->tid = malloc(values->threads_max * sizeof(*values->tid));
11 values->value = malloc(values->threads_max * sizeof(*values->value));
30 if (!values->threads_max || !values->counters_max)
46 values->threads_max *= 2;
48 values->threads_max * sizeof(*values->pid));
50 values->threads_max * sizeof(*values->tid));
52 values->threads_max * sizeof(*values->value));
66 if (values->threads == values->threads_max)
    [all...]

Completed in 231 milliseconds