Home
last modified time | relevance | path

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

/llvm-project-15.0.7/third-party/benchmark/test/
H A 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()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dstatistics.h34 double StatisticsCV(const std::vector<double>& v);
H A Dstatistics.cc78 double StatisticsCV(const std::vector<double>& v) { in StatisticsCV() function
H A Dbenchmark_register.cc220 ComputeStatistics("cv", StatisticsCV, kPercentage); in Benchmark()