HomeSort by relevance Sort by last modified time
    Searched refs:NthDelayPercentile (Results 1 - 3 of 3) sorted by null

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder_unittest.cc 36 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), 0);
37 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), 0);
38 EXPECT_EQ(metric_recorder_.NthDelayPercentile(95), 0);
39 EXPECT_EQ(metric_recorder_.NthDelayPercentile(100), 0);
61 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), kDelayMs);
62 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), kDelayMs);
63 EXPECT_EQ(metric_recorder_.NthDelayPercentile(95), kDelayMs);
64 EXPECT_EQ(metric_recorder_.NthDelayPercentile(100), kDelayMs);
100 EXPECT_EQ(metric_recorder_.NthDelayPercentile(0), 1);
101 EXPECT_EQ(metric_recorder_.NthDelayPercentile(5), (5 * kNumPackets) / 100)
    [all...]
metric_recorder.cc 315 int64_t percentile_5_ms = NthDelayPercentile(5);
316 int64_t percentile_95_ms = NthDelayPercentile(95);
399 int64_t MetricRecorder::NthDelayPercentile(int n) const {
metric_recorder.h 147 int64_t NthDelayPercentile(int n) const;

Completed in 626 milliseconds