Searched refs:BigO (Results 1 – 11 of 11) sorted by relevance
/third_party/benchmark/bindings/python/google_benchmark/ |
D | benchmark.cc | 55 using benchmark::BigO; in PYBIND11_MODULE() 56 py::enum_<BigO>(m, "BigO") in PYBIND11_MODULE() 57 .value("oNone", BigO::oNone) in PYBIND11_MODULE() 58 .value("o1", BigO::o1) in PYBIND11_MODULE() 59 .value("oN", BigO::oN) in PYBIND11_MODULE() 60 .value("oNSquared", BigO::oNSquared) in PYBIND11_MODULE() 61 .value("oNCubed", BigO::oNCubed) in PYBIND11_MODULE() 62 .value("oLogN", BigO::oLogN) in PYBIND11_MODULE() 63 .value("oNLogN", BigO::oLogN) in PYBIND11_MODULE() 64 .value("oAuto", BigO::oAuto) in PYBIND11_MODULE() [all …]
|
/third_party/json/benchmarks/thirdparty/benchmark/src/ |
D | complexity.h | 47 BigO complexity; 51 std::string GetBigOString(BigO complexity);
|
D | complexity.cc | 28 BigOFunc* FittingCurve(BigO complexity) { in FittingCurve() 47 std::string GetBigOString(BigO complexity) { in GetBigOString() 121 const std::vector<double>& time, const BigO complexity) { in MinimalLeastSq() 130 std::vector<BigO> fit_curves = {oLogN, oN, oNLogN, oNSquared, oNCubed}; in MinimalLeastSq()
|
D | benchmark_api_internal.h | 25 BigO complexity;
|
D | benchmark_register.cc | 390 Benchmark* Benchmark::Complexity(BigO complexity) { in Complexity()
|
/third_party/benchmark/src/ |
D | complexity.h | 47 BigO complexity; 51 std::string GetBigOString(BigO complexity);
|
D | complexity.cc | 29 BigOFunc* FittingCurve(BigO complexity) { in FittingCurve() 54 std::string GetBigOString(BigO complexity) { in GetBigOString() 126 const std::vector<double>& time, const BigO complexity) { in MinimalLeastSq() 135 std::vector<BigO> fit_curves = {oLogN, oN, oNLogN, oNSquared, oNCubed}; in MinimalLeastSq()
|
D | benchmark_api_internal.h | 34 BigO complexity() const { return complexity_; } in complexity() 59 BigO complexity_;
|
D | benchmark_register.cc | 405 Benchmark* Benchmark::Complexity(BigO complexity) { in Complexity()
|
/third_party/json/benchmarks/thirdparty/benchmark/include/benchmark/ |
D | benchmark.h | 384 enum BigO { oNone, o1, oN, oNSquared, oNCubed, oLogN, oNLogN, oAuto, oLambda }; enum 844 Benchmark* Complexity(BigO complexity = benchmark::oAuto); 909 BigO complexity_; 1307 BigO complexity;
|
/third_party/benchmark/include/benchmark/ |
D | benchmark.h | 517 enum BigO { oNone, o1, oN, oNSquared, oNCubed, oLogN, oNLogN, oAuto, oLambda }; enum 1050 Benchmark* Complexity(BigO complexity = benchmark::oAuto); 1116 BigO complexity_; 1580 BigO complexity;
|