OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threads_max
(Results
1 - 2
of
2
) sorted by null
/external/linux-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)
45
values->
threads_max
*= 2;
47
values->
threads_max
* sizeof(*values->pid));
49
values->
threads_max
* sizeof(*values->tid));
51
values->
threads_max
* sizeof(*values->value));
65
if (values->threads == values->
threads_max
)
[
all
...]
Completed in 48 milliseconds