Symbol: nrcpus
kernel/smp.c
966
early_param("nr_cpus", nrcpus);
tools/perf/bench/epoll-ctl.c
229
int nrcpus;
tools/perf/bench/epoll-ctl.c
235
nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/epoll-ctl.c
236
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/epoll-ctl.c
238
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/epoll-wait.c
298
int nrcpus;
tools/perf/bench/epoll-wait.c
312
nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/epoll-wait.c
313
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/epoll-wait.c
315
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/futex-hash.c
136
int nrcpus;
tools/perf/bench/futex-hash.c
182
nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/futex-hash.c
183
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/futex-hash.c
185
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/futex-lock-pi.c
128
int nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/futex-lock-pi.c
133
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/futex-lock-pi.c
135
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/futex-requeue.c
131
int nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/futex-requeue.c
136
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/futex-requeue.c
138
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/futex-wake-parallel.c
155
int nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/futex-wake-parallel.c
160
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/futex-wake-parallel.c
162
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/futex-wake.c
106
int nrcpus = cpu__max_cpu().cpu;
tools/perf/bench/futex-wake.c
109
cpuset = CPU_ALLOC(nrcpus);
tools/perf/bench/futex-wake.c
111
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/numa.c
274
int nrcpus = numa_num_possible_cpus();
tools/perf/bench/numa.c
278
orig_mask = CPU_ALLOC(nrcpus);
tools/perf/bench/numa.c
280
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/numa.c
286
mask = CPU_ALLOC(nrcpus);
tools/perf/bench/numa.c
321
int nrcpus = numa_num_possible_cpus();
tools/perf/bench/numa.c
326
orig_mask = CPU_ALLOC(nrcpus);
tools/perf/bench/numa.c
328
size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/bench/numa.c
334
mask = CPU_ALLOC(nrcpus);
tools/perf/tests/perf-record.c
21
int nrcpus = cpu__max_cpu().cpu;
tools/perf/tests/perf-record.c
22
size_t size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/tests/perf-record.c
28
if (errno == EINVAL && nrcpus < (cpu__max_cpu().cpu << 8)) {
tools/perf/tests/perf-record.c
29
nrcpus = nrcpus << 2;
tools/perf/tests/perf-record.c
36
for (i = 0; i < nrcpus; i++) {
tools/perf/tests/perf-record.c
57
int nrcpus = cpu__max_cpu().cpu;
tools/perf/tests/perf-record.c
77
cpu_mask = CPU_ALLOC(nrcpus);
tools/perf/tests/perf-record.c
83
cpu_mask_size = CPU_ALLOC_SIZE(nrcpus);
tools/perf/util/header.c
3737
FEAT_OPR(NRCPUS, nrcpus, false),