Home
last modified time | relevance | path

Searched refs:num_cores (Results 1 – 6 of 6) sorted by relevance

/xnu-8020.101.4/tests/counter/
H A Dbenchmark.lua55 function QueueTest(num_cores)
58 num_cores = num_cores,
83 local args = {test.path, benchmark.opt.variant, benchmark.opt.num_writes, test.num_cores,
99 threads = test.num_cores,
H A Dbenchmark.c235 long num_cores = strtol(argv[current_argument++], NULL, 10); in parse_arguments() local
236 if (num_cores == 0) { in parse_arguments()
240 assert(num_cores > 0 && num_cores <= get_ncpu()); in parse_arguments()
241 args->n_threads = (unsigned int) num_cores; in parse_arguments()
/xnu-8020.101.4/tests/vm/
H A Dfault_throughput.lua64 function QueueTest(num_cores)
67 num_cores = num_cores,
92 local args = {test.path, "-v", benchmark.opt.variant, benchmark.opt.duration, test.num_cores,
105 threads = test.num_cores,
H A Dfault_throughput.c659 long num_cores = strtol(argv[current_argument++], NULL, 10); in parse_arguments() local
660 if (num_cores == 0) { in parse_arguments()
673 assert(num_cores > 0 && num_cores <= get_ncpu()); in parse_arguments()
674 args->n_threads = (unsigned int) num_cores; in parse_arguments()
/xnu-8020.101.4/osfmk/i386/
H A Dcpu_topology.h180 uint32_t num_cores; /* Number of cores in die */ member
H A Dcpu_threads.c780 die->num_cores += 1; in x86_die_add_core()