Home
last modified time | relevance | path

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

/third_party/benchmark/test/
Duser_counters_thousands_test.cc19 bm::Counter::OneK::kIs1000)}, in BM_Counters_Thousands()
21 bm::Counter::OneK::kIs1024)}, in BM_Counters_Thousands()
23 bm::Counter::OneK::kIs1000)}, in BM_Counters_Thousands()
25 bm::Counter::OneK::kIs1024)}, in BM_Counters_Thousands()
Dstring_util_gtest.cc165 std::tuple<double, benchmark::Counter::OneK, std::string>>;
/third_party/benchmark/bindings/python/google_benchmark/
Dbenchmark.cc135 nb::enum_<Counter::OneK>(py_counter, "OneK") in NB_MODULE()
136 .value("kIs1000", Counter::OneK::kIs1000) in NB_MODULE()
137 .value("kIs1024", Counter::OneK::kIs1024) in NB_MODULE()
141 .def(nb::init<double, Counter::Flags, Counter::OneK>(), in NB_MODULE()
/third_party/benchmark/src/
Dstring_util.cc102 Counter::OneK one_k) { in ToBinaryStringFullySpecified()
143 std::string HumanReadableNumber(double n, Counter::OneK one_k) { in HumanReadableNumber()
Dstring_util.h17 std::string HumanReadableNumber(double n, Counter::OneK one_k);
/third_party/benchmark/include/benchmark/
Dbenchmark.h627 enum OneK { enum
636 OneK oneK;
639 Counter(double v = 0., Flags f = kDefaults, OneK k = kIs1000)
/third_party/benchmark/docs/
Duser_guide.md677 is 1k a 1000 (default, `benchmark::Counter::OneK::kIs1000`), or 1024
678 (`benchmark::Counter::OneK::kIs1024`)?
702 …(state.range(0), benchmark::Counter::kIsIterationInvariantRate, benchmark::Counter::OneK::kIs1024);