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

  /external/chromium-trace/catapult/common/lab/
commits.py 35 def Percentile(data, percentile):
36 """Find a percentile of a list of values.
40 percentile: The percentile to look up, from 0.0 to 1.0.
43 The percentile.
51 k = (len(data) - 1) * percentile
91 percentile = Percentile(commit_durations, p)
92 print '%3d%% commit duration:' % (p * 100), '%6ds' % percentile
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
statistics.py 295 return Percentile(values, 50)
298 def Percentile(values, percentile):
302 percentile for this set of values. When the percentage doesn't exactly
303 match a rank in the list of values, the percentile is computed using linear
308 percentile: A number between 0 and 100.
311 The Nth percentile for the list of values, where N is the given percentage.
317 percentile /= 100.0
318 if percentile <= 0.5 / n:
320 elif percentile >= (n - 0.5) / n
    [all...]
  /art/runtime/base/
histogram-inl.h 196 << (interval * 100) << "% C.I. " << FormatDuration(Percentile(per_0, data) * kAdjust, unit,
198 << "-" << FormatDuration(Percentile(per_1, data) * kAdjust, unit, kFractionalDigits) << " "
233 inline double Histogram<Value>::Percentile(double per, const CumulativeData& data) const {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Percentile.java 28 * Provides percentile computation.
36 * <code>0 < p <= 100</code> be the desired percentile.</li>
39 * <li>Compute the estimated percentile position
56 * (50th percentile) of
59 * Since percentile estimation usually involves interpolation between array
63 * Since 2.2, Percentile implementation uses only selection instead of complete
66 * This greatly improves efficiency, both for single percentile and multiple
69 * state from the previous calls. Percentile does this by checking the array reference
82 public class Percentile extends AbstractUnivariateStatistic implements Serializable {
93 /** Determines what percentile is computed when evaluate() is activate
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
perfdiag.py 65 from gslib.util import Percentile
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
util.py 581 def Percentile(values, percent, key=lambda x: x):
582 """Find the percentile of a list of values.
594 The percentile of the values.
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 

Completed in 2115 milliseconds