OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Percentile
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/cc/scheduler/
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
36
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 {
/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
UniquePtr<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
55
double
Percentile
(double per, const CumulativeData& data) const;
histogram-inl.h
167
os << (interval * 100) << "% C.I. " << FormatDuration(
Percentile
(per_0, data) * kAdjust, unit);
168
os << "-" << FormatDuration(
Percentile
(per_1, data) * kAdjust, unit) << " ";
190
inline double Histogram<Value>::
Percentile
(double per, const CumulativeData& data) const {
/external/chromium_org/tools/perf/metrics/
statistics_unittest.py
138
# The 50th
percentile
is the median value.
139
self.assertEquals(3, statistics.
Percentile
([4, 5, 1, 3, 2], 50))
140
self.assertEquals(2.5, statistics.
Percentile
([5, 1, 3, 2], 50))
142
self.assertEquals(0, statistics.
Percentile
([], 50))
144
self.assertEquals(1, statistics.
Percentile
([2, 1, 5, 4, 3], 5))
146
self.assertEquals(5, statistics.
Percentile
([5, 2, 4, 1, 3], 95))
148
# from <http://en.wikipedia.org/wiki/
Percentile
>:
149
self.assertEquals(27.5, statistics.
Percentile
([15, 20, 35, 40, 50], 40))
statistics.py
182
return
Percentile
(values, 50)
185
def
Percentile
(values,
percentile
):
189
percentile
for this set of values. When the percentage doesn't exactly
190
match a rank in the list of values, the
percentile
is computed using linear
195
percentile
: A number between 0 and 100.
198
The Nth
percentile
for the list of values, where N is the given percentage.
204
percentile
/= 100.0
205
if
percentile
<= 0.5 / n:
207
elif
percentile
>= (n - 0.5) / n
[
all
...]
smoothness.py
79
percentile_95 = statistics.
Percentile
(self._stats.frame_times, 95.0)
/external/chromium_org/cc/trees/
thread_proxy.cc
[
all
...]
/external/chromium_org/cc/output/
output_surface.cc
406
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 79 milliseconds