Home
last modified time | relevance | path

Searched refs:NthDelayPercentile (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dmetric_recorder_unittest.cc36 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 …]
Dmetric_recorder.cc315 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
Dmetric_recorder.h147 int64_t NthDelayPercentile(int n) const;