Home
last modified time | relevance | path

Searched refs:kInvert (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/third-party/benchmark/test/
H A Duser_counters_test.cc167 state.counters["foo"] = bm::Counter{0.0001, bm::Counter::kInvert}; in BM_Invert()
168 state.counters["bar"] = bm::Counter{10000, bm::Counter::kInvert}; in BM_Invert()
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()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dcounter.cc36 if (c.flags & Counter::kInvert) { // Invert is *always* last. in Finish()
H A Dconsole_reporter.cc173 unit = (c.second.flags & Counter::kInvert) ? "s" : "/s"; in PrintRunData()
/llvm-project-15.0.7/third-party/benchmark/bindings/python/google_benchmark/
H A Dexample.py88 state.counters["foo_inv_rate"] = Counter(num_foo, Counter.kIsRate | Counter.kInvert)
H A Dbenchmark.cc131 .value("kInvert", Counter::Flags::kInvert) in PYBIND11_MODULE()
/llvm-project-15.0.7/third-party/benchmark/include/benchmark/
H A Dbenchmark.h476 kInvert = 1 << 31 enumerator
/llvm-project-15.0.7/third-party/benchmark/docs/
H A Duser_guide.md655 …unters["FooInvRate"] = Counter(numFoos, benchmark::Counter::kIsRate | benchmark::Counter::kInvert);