Searched refs:NthDelayPercentile (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | metric_recorder_unittest.cc | 36 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), 0); in TEST_F() 37 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), 0); in TEST_F() 38 EXPECT_EQ(metric_recorder_.NthDelayPercentile(95), 0); in TEST_F() 39 EXPECT_EQ(metric_recorder_.NthDelayPercentile(100), 0); in TEST_F() 61 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), kDelayMs); in TEST_F() 62 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), kDelayMs); in TEST_F() 63 EXPECT_EQ(metric_recorder_.NthDelayPercentile(95), kDelayMs); in TEST_F() 64 EXPECT_EQ(metric_recorder_.NthDelayPercentile(100), kDelayMs); in TEST_F() 100 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), 1); in TEST_F() 101 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), (5 * kNumPackets) / 100); in TEST_F() [all …]
|
D | metric_recorder.cc | 315 int64_t percentile_5_ms = NthDelayPercentile(5); in PlotDelayHistogram() 316 int64_t percentile_95_ms = NthDelayPercentile(95); in PlotDelayHistogram() 399 int64_t MetricRecorder::NthDelayPercentile(int n) const { in NthDelayPercentile() function in webrtc::testing::bwe::MetricRecorder
|
D | metric_recorder.h | 147 int64_t NthDelayPercentile(int n) const;
|