Home | History | Annotate | Download | only in benchmark

Lines Matching refs:Range

53 // appropriate arguments in the specified range and will generate a
55 BENCHMARK(BM_memcpy)->Range(8, 8<<10);
88 // The following example enumerates a dense range on
89 // one parameter, and a sparse range on the second.
113 BENCHMARK_TEMPLATE(BM_Sequential, WaitQueue<int>)->Range(1<<0, 1<<10);
329 // Range arguments for this run. CHECKs if the argument has been set.
394 // range [start..limit]. (start and limit are always picked.)
396 Benchmark* Range(int start, int limit);
398 // Run this benchmark once for every value in the range [start..limit]
407 // Pick a set of values A from the range [lo1..hi1] and a set
408 // of values B from the range [lo2..hi2]. Run the benchmark for
537 #define BENCHMARK_RANGE(n, lo, hi) BENCHMARK(n)->Range((lo), (hi))