HomeSort by relevance Sort by last modified time
    Searched full:percentile (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/chromium-trace/catapult/tracing/tracing/metrics/v8/
gc_metric.html 59 percentile: [0.90]});
73 percentile: [0.90]
88 percentile: []
106 percentile: []
322 hist.addSample(mutatorUtilization.percentile(1.0 - percent));
gc_metric_test.html 281 mutatorUtilization.percentile(1 - 0.95), 1e-2);
286 mutatorUtilization.percentile(1 - 0.99), 1e-2);
  /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;
  /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 {
histogram.h 59 double Percentile(double per, const CumulativeData& data) const;
  /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$',
  /cts/suite/audio_quality/test_description/
dut_recording_thd.xml 34 <!-- input: host record, device record, signal frequency in Hz, THD for pass in percentile, output: THD calculated -->
  /external/chromium-trace/catapult/tracing/tracing/base/
statistics_test.html 267 test('percentile', function() {
283 assert.equal(Statistics.percentile(ary, 0, func, ctx), 0);
284 assert.equal(Statistics.percentile(ary, .5, func, ctx), 4);
285 assert.equal(Statistics.percentile(ary, .75, func, ctx), 6);
286 assert.equal(Statistics.percentile(ary, 1, func, ctx), 9);
306 assert.equal(Statistics.percentile(ary, 0, func, ctx), 0);
307 assert.equal(Statistics.percentile(ary, .5, func, ctx), 16);
308 assert.equal(Statistics.percentile(ary, .75, func, ctx), 36);
309 assert.equal(Statistics.percentile(ary, 1, func, ctx), 81);
piecewise_linear_function.html 72 percentile: function(percent) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
JitterVerification.java 97 * Verify that the 95th percentile of the jitter is in the acceptable range. Add
133 "jitter min, max, range (95th percentile) = (%dns, %dns, %dns), " +
  /external/chromium-trace/catapult/tracing/tracing/metrics/blink/
gc_metric.html 62 percentile: [0.90]});
76 percentile: []
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
neteq_opus_quality_test.cc 75 printf("Invalid packet loss percentile, should be between 0 and 100.");
79 DEFINE_int32(reported_loss_rate, 10, "Reported percentile of packet loss.");
  /system/connectivity/shill/wifi/
scan_session_unittest.cc 51 WiFiProvider::FrequencyCount(kExpectedFreq5640, 40), // 40th percentile.
52 WiFiProvider::FrequencyCount(kExpectedFreq5600, 25), // 65th percentile.
53 WiFiProvider::FrequencyCount(kExpectedFreq5580, 20), // 85th percentile.
54 WiFiProvider::FrequencyCount(kExpectedFreq5560, 10), // 95th percentile.
55 WiFiProvider::FrequencyCount(kExpectedFreq5620, 5) // 100th percentile.
scan_session.h 102 // Each scan takes a greater percentile (described by the values in
168 // the 33.3rd percentile of frequencies to which we've successfully connected
171 // least_ the 66.6th percentile of the frequencies to which we've successfully
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.util.statistics.html 73 <dl><dt><a name="-Percentile"><strong>Percentile</strong></a>(values, percentile)</dt><dd><tt>Calculates&nbsp;the&nbsp;value&nbsp;below&nbsp;which&nbsp;a&nbsp;given&nbsp;percentage&nbsp;of&nbsp;values&nbsp;fall.<br>
76 percentile&nbsp;for&nbsp;this&nbsp;set&nbsp;of&nbsp;values.&nbsp;When&nbsp;the&nbsp;percentage&nbsp;doesn't&nbsp;exactly<br>
77 match&nbsp;a&nbsp;rank&nbsp;in&nbsp;the&nbsp;list&nbsp;of&nbsp;values,&nbsp;the&nbsp;percentile&nbsp;is&nbsp;computed&nbsp;using&nbsp;linear<br>
82 &nbsp;&nbsp;percentile:&nbsp;A&nbsp;number&nbsp;between&nbsp;0&nbsp;and&nbsp;100.<br>
85 &nbsp;&nbsp;The&nbsp;Nth&nbsp;percentile&nbsp;for&nbsp;the&nbsp;list&nbsp;of&nbsp;values,&nbsp;where&nbsp;N&nbsp;is&nbsp;the&nbsp;given&nbsp;percentage.</tt></dd></dl>
  /external/chromium-trace/catapult/experimental/heatmap/
draw.js 22 var cutoff = percentile(counts, 0.9);
  /external/chromium-trace/catapult/tracing/tracing/value/
histogram_test.html 199 var expected = tr.b.Statistics.percentile(array, percent);
217 // If the real percentile is outside the bin range then the approximation
221 // The result is no more than the bin width away from the real percentile.
337 percentile: [0.5, 1]
379 percentile: []
395 percentile: [0, 0.01, 0.1, 0.5, 0.995, 1]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder.cc 326 BWE_TEST_LOGGING_LOG1("RESULTS >>> " + bwe_name + " Delay 5th percentile : ",
328 BWE_TEST_LOGGING_LOG1("RESULTS >>> " + bwe_name + " Delay 95th percentile : ",
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /cts/common/util/src/com/android/compatibility/common/util/
Stat.java 173 * Get the value of the 95th percentile using nearest rank algorithm.
  /external/skia/bench/
bench_compare.py 22 print ' 25th: twenty-fifth percentile for all data points'
  /packages/apps/TV/tests/jank/src/com/android/tv/tests/jank/
ProgramGuideJankTest.java 53 * <p>200 is chosen so there will be enough frame for the 90th, 95th, and 98th percentile
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_quality_test.cc 103 printf("Invalid packet loss percentile, should be between 0 and 100.");
120 DEFINE_int32(packet_loss_rate, 10, "Percentile of packet loss.");
  /external/fio/
stat.h 25 * Aggregate clat samples to report percentile(s) of them.

Completed in 1704 milliseconds

12 3 4