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

  /external/chromium_org/cc/base/
rolling_time_delta_history_unittest.cc 14 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(0.0));
15 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(50.0));
16 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(100.0));
22 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(0.0));
23 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(50.0));
24 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(100.0));
27 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(0.0));
28 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(50.0));
29 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(100.0));
37 EXPECT_EQ(base::TimeDelta(), size_one_history.Percentile(0.0))
    [all...]
rolling_time_delta_history.h 30 base::TimeDelta Percentile(double percent) const;
rolling_time_delta_history.cc 34 base::TimeDelta RollingTimeDeltaHistory::Percentile(double percent) const {
  /external/chromium_org/third_party/leveldatabase/src/util/
histogram.h 35 double Percentile(double p) const;
histogram.cc 70 return Percentile(50.0);
73 double Histogram::Percentile(double p) const {
  /external/chromium_org/cc/trees/
proxy_timing_history.cc 28 draw_duration_history_.Percentile(kDrawDurationEstimationPercentile);
36 return begin_main_frame_to_commit_duration_history_.Percentile(
41 return commit_to_activate_duration_history_.Percentile(
  /art/runtime/base/
histogram_test.cc 27 // Percentile PerValue
34 // PerValue = hist->PercentileVal(0.50); finds the 50th percentile(median).
66 TEST(Histtest, Percentile) {
67 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("Percentile", 5));
89 PerValue = hist->Percentile(0.50, data);
121 PerValue = hist->Percentile(0.50, data);
164 PerValue = hist->Percentile(0.50, data);
205 PerValue = hist->Percentile(0.50, data);
238 per_995 = hist->Percentile(0.995, data);
247 per_005 = hist->Percentile(0.005, data)
    [all...]
histogram.h 59 double Percentile(double per, const CumulativeData& data) const;
histogram-inl.h 174 << (interval * 100) << "% C.I. " << FormatDuration(Percentile(per_0, data) * kAdjust, unit,
176 << "-" << FormatDuration(Percentile(per_1, data) * kAdjust, unit, kFractionalDigits) << " "
199 inline double Histogram<Value>::Percentile(double per, const CumulativeData& data) const {
  /external/chromium_org/tools/telemetry/telemetry/util/
statistics_unittest.py 167 # The 50th percentile is the median value.
168 self.assertEquals(3, statistics.Percentile([4, 5, 1, 3, 2], 50))
169 self.assertEquals(2.5, statistics.Percentile([5, 1, 3, 2], 50))
171 self.assertEquals(0, statistics.Percentile([], 50))
173 self.assertEquals(1, statistics.Percentile([2, 1, 5, 4, 3], 5))
175 self.assertEquals(5, statistics.Percentile([5, 2, 4, 1, 3], 95))
177 # from <http://en.wikipedia.org/wiki/Percentile>:
178 self.assertEquals(27.5, statistics.Percentile([15, 20, 35, 40, 50], 40))
statistics.py 283 return Percentile(values, 50)
286 def Percentile(values, percentile):
290 percentile for this set of values. When the percentage doesn't exactly
291 match a rank in the list of values, the percentile is computed using linear
296 percentile: A number between 0 and 100.
299 The Nth percentile for the list of values, where N is the given percentage.
305 percentile /= 100.0
306 if percentile <= 0.5 / n:
308 elif percentile >= (n - 0.5) / n
    [all...]
  /external/chromium_org/cc/output/
output_surface.cc 275 return gpu_latency_history_.Percentile(kGpuLatencyEstimationPercentile);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 

Completed in 382 milliseconds