Home
last modified time | relevance | path

Searched refs:kLog2E (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dcomplexity.cc29 static const double kLog2E = 1.44269504088896340736; in FittingCurve() local
39 return [](int64_t n) { return kLog2E * log(static_cast<double>(n)); }; in FittingCurve()
42 return [](int64_t n) { return kLog2E * n * log(static_cast<double>(n)); }; in FittingCurve()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Dcomplexity_test.cc151 static const double kLog2E = 1.44269504088896340736; variable
159 ->Complexity([](int64_t n) { return kLog2E * n * log(static_cast<double>(n)); }); in __anondfe756870402()