HomeSort by relevance Sort by last modified time
    Searched full:percentile (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium-trace/catapult/experimental/heatmap/
math.js 13 function percentile(values, percentile) { function
14 var cutoff = values.length * percentile;
calculate.js 53 this.min = percentile(values, OUTLIER_THRESHOLD / 2);
54 this.max = percentile(values, -OUTLIER_THRESHOLD / 2);
renderer.js 59 this.min = percentile(values, OUTLIER_THRESHOLD / 2);
60 this.max = percentile(values, -OUTLIER_THRESHOLD / 2);
106 var cutoff = percentile(counts, 0.9);
  /external/chromium-trace/catapult/experimental/
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/autotest/client/bin/
fio_util.py 54 h_title = { True: 'Percentile', False: 'Time (s)' }
71 def _parse_log_file(cls, file_name, pass_index, pass_count, percentile):
83 @param percentile: flag to use percentile as key instead of timestamp
97 # Sort & calculate percentile
98 if percentile:
115 def _gen_data_col(cls, pass_list, percentile):
123 @param percentile: flag to use percentile as key instead of timestamp
127 if percentile
    [all...]
  /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...]
Median.java 23 * Returns the median of the available values. This is the same as the 50th percentile.
24 * See {@link Percentile} for a description of the algorithm used.
33 public class Median extends Percentile implements Serializable {
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/
picture_ops_chart_view.css 14 * /deep/ tr-ui-e-chrome-cc-picture-ops-chart-view > .use-percentile-scale {
  /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-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/caliper/caliper/src/main/java/com/google/caliper/runner/
ConsoleOutput.java 37 import org.apache.commons.math.stat.descriptive.rank.Percentile;
119 Percentile percentile = new Percentile(); local
120 percentile.setData(weightedValues);
126 descriptiveStatistics.getMin(), percentile.evaluate(25),
127 percentile.evaluate(50), descriptiveStatistics.getMean(),
128 percentile.evaluate(75), descriptiveStatistics.getMax());
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
JankStat.java 41 FRAME_TIME_50TH(Pattern.compile("\\s*50th percentile: (\\d+)ms"), 1),
42 FRAME_TIME_90TH(Pattern.compile("\\s*90th percentile: (\\d+)ms"), 1),
43 FRAME_TIME_95TH(Pattern.compile("\\s*95th percentile: (\\d+)ms"), 1),
44 FRAME_TIME_99TH(Pattern.compile("\\s*99th percentile: (\\d+)ms"), 1),
134 "\n50th percentile: " + frameTime50th +
135 "\n90th percentile: " + frameTime90th +
136 "\n95th percentile: " + frameTime95th +
137 "\n99th percentile: " + frameTime99th +
152 * Final ##th percentile = weighted average of ##th, weight by total frames
  /packages/inputmethods/LatinIME/java/res/values/
donottranslate-debug-settings.xml 36 <!-- Title of the settings for key popup show up animation start X-scale (in percentile) [CHAR LIMIT=35] -->
38 <!-- Title of the settings for key popup show up animation start Y-scale (in percentile) [CHAR LIMIT=35] -->
40 <!-- Title of the settings for key popup dismiss animation end X-scale (in percentile) [CHAR LIMIT=35] -->
42 <!-- Title of the settings for key popup dismiss animation end Y-scale (in percentile) [CHAR LIMIT=35] -->
  /cts/suite/audio_quality/test_description/processing/
playback_thd.py 26 # THD pass level in percentile (double)
27 # Output: THD device (double) in percentile
recording_thd.py 26 # THD pass level in percentile (double)
27 # Output:THD host (double), THD device (double) in percentile
  /external/chromium-trace/catapult/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 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...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEConfig.h 59 float kcontrast_percentile; ///< Percentile level for the contrast factor
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 28 import org.apache.commons.math.stat.descriptive.rank.Percentile;
66 /** percentile */
67 private static final Percentile PERCENTILE = new Percentile();
498 * Returns an estimate of the <code>p</code>th percentile of the values
511 * See {@link org.apache.commons.math.stat.descriptive.rank.Percentile} for
512 * a description of the percentile estimation algorithm used.</p>
515 * @param p the percentile value to compute
516 * @return the percentile value or Double.NaN if the array is empt
520 public static double percentile(final double[] values, final double p) { method in class:StatUtils
551 public static double percentile(final double[] values, final int begin, method in class:StatUtils
    [all...]
  /cts/suite/audio_quality/test_description/
dut_playback_thd.xml 33 <!-- input: host record, signal frequency in Hz, THD for pass in percentile, output: THD calculated -->
  /system/extras/tests/workloads/
pwrsummary.sh 58 units="FPS from app point of view: 1/(90th percentile render time)";;
93 # 90th percentile: 23ms
94 # 95th percentile: 27ms
95 # 99th percentile: 32ms
  /external/chromium-trace/catapult/tracing/tracing/base/
statistics_test.html 164 test('percentile', function() {
180 assert.equal(Statistics.percentile(ary, 0, func, ctx), 0);
181 assert.equal(Statistics.percentile(ary, .5, func, ctx), 4);
182 assert.equal(Statistics.percentile(ary, .75, func, ctx), 6);
183 assert.equal(Statistics.percentile(ary, 1, func, ctx), 9);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DescriptiveStatistics.java 32 import org.apache.commons.math.stat.descriptive.rank.Percentile;
96 /** Percentile statistic implementation - can be reset by setter. */
97 private UnivariateStatistic percentileImpl = new Percentile();
376 * Returns an estimate for the pth percentile of the stored values.
388 * @param p the requested percentile (scaled from 0 - 100)
389 * @return An estimate for the pth percentile of the stored data
390 * @throws IllegalStateException if percentile implementation has been
395 if (percentileImpl instanceof Percentile) {
396 ((Percentile) percentileImpl).setQuantile(p);
559 * Returns the currently configured percentile implementation
    [all...]
  /frameworks/base/libs/hwui/
JankTracker.cpp 295 dprintf(fd, "\n50th percentile: %ums", findPercentile(data, 50));
296 dprintf(fd, "\n90th percentile: %ums", findPercentile(data, 90));
297 dprintf(fd, "\n95th percentile: %ums", findPercentile(data, 95));
298 dprintf(fd, "\n99th percentile: %ums", findPercentile(data, 99));
326 uint32_t JankTracker::findPercentile(const ProfileData* data, int percentile) {
327 int pos = percentile * data->totalFrameCount / 100;
  /external/autotest/client/site_tests/video_VEAPerf/
video_VEAPerf.py 56 r'^Encode latency for the 50th percentile: (\d+) us$',
59 r'^Encode latency for the 75th percentile: (\d+) us$',
62 r'^Encode latency for the 95th percentile: (\d+) us$',

Completed in 543 milliseconds

1 2 3 4