Home
last modified time | relevance | path

Searched refs:StatisticsCV (Results 1 – 4 of 4) sorted by relevance

/third_party/benchmark/test/
Dstatistics_gtest.cc29 EXPECT_DOUBLE_EQ(benchmark::StatisticsCV({101, 101, 101, 101}), 0.0); in TEST()
30 EXPECT_DOUBLE_EQ(benchmark::StatisticsCV({1, 2, 3}), 1. / 2.); in TEST()
31 EXPECT_DOUBLE_EQ(benchmark::StatisticsCV({2.5, 2.4, 3.3, 4.2, 5.1}), in TEST()
/third_party/benchmark/src/
Dstatistics.h40 double StatisticsCV(const std::vector<double>& v);
Dstatistics.cc78 double StatisticsCV(const std::vector<double>& v) { in StatisticsCV() function
Dbenchmark_register.cc227 ComputeStatistics("cv", StatisticsCV, kPercentage); in Benchmark()