Searched refs:kIsRate (Results 1 – 12 of 12) sorted by relevance
/third_party/benchmark/test/ |
D | user_counters_test.cc | 124 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate() 125 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate() 209 bm::Counter{1, bm::Counter::kIsRate | bm::Counter::kInvert}; in BM_Counters_InvertedRate() 211 bm::Counter{8192, bm::Counter::kIsRate | bm::Counter::kInvert}; in BM_Counters_InvertedRate() 426 bm::Counter{2, bm::Counter::kIsRate | bm::Counter::kIsIterationInvariant}; in BM_Counters_kIsIterationInvariantRate() 516 bm::Counter{2, bm::Counter::kIsRate | bm::Counter::kAvgIterations}; in BM_Counters_kAvgIterationsRate()
|
D | internal_threading_test.cc | 43 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_MainThread() 86 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_WorkerThread() 130 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_MainThreadAndWorkerThread()
|
/third_party/benchmark/bindings/python/google_benchmark/ |
D | example.py | 86 state.counters["foo_rate"] = Counter(num_foo, Counter.kIsRate) 88 state.counters["foo_inv_rate"] = Counter(num_foo, Counter.kIsRate | Counter.kInvert)
|
D | benchmark.cc | 123 .value("kIsRate", Counter::Flags::kIsRate) in PYBIND11_MODULE()
|
/third_party/json/benchmarks/thirdparty/benchmark/src/ |
D | console_reporter.cc | 155 if (c.second.flags & Counter::kIsRate) { in PrintRunData() 161 const char* unit = (c.second.flags & Counter::kIsRate) ? "/s" : ""; in PrintRunData()
|
D | counter.cc | 22 if (c.flags & Counter::kIsRate) { in Finish()
|
/third_party/benchmark/src/ |
D | counter.cc | 23 if (c.flags & Counter::kIsRate) { in Finish()
|
D | console_reporter.cc | 172 if (c.second.flags & Counter::kIsRate) in PrintRunData()
|
/third_party/benchmark/include/benchmark/ |
D | benchmark.h | 456 kIsRate = 1 << 0, enumerator 461 kAvgThreadsRate = kIsRate | kAvgThreads, 468 kIsIterationInvariantRate = kIsRate | kIsIterationInvariant, 473 kAvgIterationsRate = kIsRate | kAvgIterations, 671 Counter(static_cast<double>(bytes), Counter::kIsRate, Counter::kIs1024); in SetBytesProcessed() 701 Counter(static_cast<double>(items), benchmark::Counter::kIsRate); in SetItemsProcessed()
|
/third_party/json/benchmarks/thirdparty/benchmark/include/benchmark/ |
D | benchmark.h | 353 kIsRate = 1, enumerator 358 kAvgThreadsRate = kIsRate|kAvgThreads
|
/third_party/benchmark/docs/ |
D | user_guide.md | 650 state.counters["FooRate"] = Counter(numFoos, benchmark::Counter::kIsRate); 655 …state.counters["FooInvRate"] = Counter(numFoos, benchmark::Counter::kIsRate | benchmark::Counter::…
|
/third_party/json/benchmarks/thirdparty/benchmark/ |
D | README.md | 666 state.counters["FooRate"] = Counter(numFoos, benchmark::Counter::kIsRate);
|