Home
last modified time | relevance | path

Searched refs:kAvgIterations (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/third-party/benchmark/test/
H A Duser_counters_test.cc470 state.counters["foo"] = bm::Counter{1, bm::Counter::kAvgIterations}; in BM_Counters_AvgIterations()
471 state.counters["bar"] = bm::Counter{2, bm::Counter::kAvgIterations}; in BM_Counters_AvgIterations()
516 bm::Counter{2, bm::Counter::kIsRate | bm::Counter::kAvgIterations}; in BM_Counters_kAvgIterationsRate()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dcounter.cc32 if (c.flags & Counter::kAvgIterations) { in Finish()
H A Dbenchmark.cc192 counters[name] = Counter(measurement, Counter::kAvgIterations); in PauseTiming()
/llvm-project-15.0.7/third-party/benchmark/bindings/python/google_benchmark/
H A Dbenchmark.cc129 .value("kAvgIterations", Counter::Flags::kAvgIterations) in PYBIND11_MODULE()
/llvm-project-15.0.7/third-party/benchmark/include/benchmark/
H A Dbenchmark.h471 kAvgIterations = 1 << 3, enumerator
473 kAvgIterationsRate = kIsRate | kAvgIterations,