Home
last modified time | relevance | path

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

/third_party/benchmark/test/
Dstatistics_gtest.cc16 EXPECT_DOUBLE_EQ(benchmark::StatisticsMedian({42, 42, 42, 42}), 42.0); in TEST()
17 EXPECT_DOUBLE_EQ(benchmark::StatisticsMedian({1, 2, 3, 4}), 2.5); in TEST()
18 EXPECT_DOUBLE_EQ(benchmark::StatisticsMedian({1, 2, 5, 10, 10}), 5.0); in TEST()
/third_party/benchmark/src/
Dstatistics.h36 double StatisticsMedian(const std::vector<double>& v);
Dstatistics.cc38 double StatisticsMedian(const std::vector<double>& v) { in StatisticsMedian() function
Dbenchmark_register.cc225 ComputeStatistics("median", StatisticsMedian); in Benchmark()