Lines Matching refs:p0

156 struct params p0;  variable
159 OPT_INTEGER('p', "nr_proc" , &p0.nr_proc, "number of processes"),
160 OPT_INTEGER('t', "nr_threads" , &p0.nr_threads, "number of threads per process"),
162 OPT_STRING('G', "mb_global" , &p0.mb_global_str, "MB", "global memory (MBs)"),
163 OPT_STRING('P', "mb_proc" , &p0.mb_proc_str, "MB", "process memory (MBs)"),
164 …OPT_STRING('L', "mb_proc_locked", &p0.mb_proc_locked_str,"MB", "process serialized/locked memory a…
165 OPT_STRING('T', "mb_thread" , &p0.mb_thread_str, "MB", "thread memory (MBs)"),
167 OPT_UINTEGER('l', "nr_loops" , &p0.nr_loops, "max number of loops to run (default: unlimited)"),
168 OPT_UINTEGER('s', "nr_secs" , &p0.nr_secs, "max number of seconds to run (default: 5 secs)"),
169 OPT_UINTEGER('u', "usleep" , &p0.sleep_usecs, "usecs to sleep per loop iteration"),
171 …OPT_BOOLEAN('R', "data_reads" , &p0.data_reads, "access the data via writes (can be mixed with -W)…
172 …OPT_BOOLEAN('W', "data_writes" , &p0.data_writes, "access the data via writes (can be mixed with -…
173 OPT_BOOLEAN('B', "data_backwards", &p0.data_backwards, "access the data backwards as well"),
174 OPT_BOOLEAN('Z', "data_zero_memset", &p0.data_zero_memset,"access the data via glibc bzero only"),
175 …OPT_BOOLEAN('r', "data_rand_walk", &p0.data_rand_walk, "access the data with random (32bit LFSR) w…
178 OPT_BOOLEAN('z', "init_zero" , &p0.init_zero, "bzero the initial allocations"),
179 …OPT_BOOLEAN('I', "init_random" , &p0.init_random, "randomize the contents of the initial allocatio…
180 OPT_BOOLEAN('0', "init_cpu0" , &p0.init_cpu0, "do the initial allocations on CPU#0"),
181 …OPT_INTEGER('x', "perturb_secs", &p0.perturb_secs, "perturb thread 0/0 every X secs, to test conve…
183 OPT_INCR ('d', "show_details" , &p0.show_details, "Show details"),
184 OPT_INCR ('a', "all" , &p0.run_all, "Run all tests in the suite"),
185 OPT_INTEGER('H', "thp" , &p0.thp, "MADV_NOHUGEPAGE < 0 < MADV_HUGEPAGE"),
186 OPT_BOOLEAN('c', "show_convergence", &p0.show_convergence, "show convergence details"),
187 OPT_BOOLEAN('m', "measure_convergence", &p0.measure_convergence, "measure convergence latency"),
188 OPT_BOOLEAN('q', "quiet" , &p0.show_quiet, "quiet mode"),
189 OPT_BOOLEAN('S', "serialize-startup", &p0.serialize_startup,"serialize thread startup"),
430 p0.cpu_list_str = strdup(arg); in parse_cpu_list()
432 dprintf("got CPU list: {%s}\n", p0.cpu_list_str); in parse_cpu_list()
567 p0.node_list_str = strdup(arg); in parse_node_list()
569 dprintf("got NODE list: {%s}\n", p0.node_list_str); in parse_node_list()
1332 g->p = p0; in init()
1646 init_params(&p0, name, argc, argv); in run_bench_numa()
1767 init_params(&p0, "main,", argc, argv); in bench_numa()
1772 if (p0.run_all) in bench_numa()