/third_party/grpc/tools/run_tests/performance/ |
D | massage_qps_stats.py | 327 "core_call_initial_size_50p"] = massage_qps_stats_helpers.percentile( 330 "core_call_initial_size_95p"] = massage_qps_stats_helpers.percentile( 333 "core_call_initial_size_99p"] = massage_qps_stats_helpers.percentile( 342 "core_poll_events_returned_50p"] = massage_qps_stats_helpers.percentile( 345 "core_poll_events_returned_95p"] = massage_qps_stats_helpers.percentile( 348 "core_poll_events_returned_99p"] = massage_qps_stats_helpers.percentile( 356 "core_tcp_write_size_50p"] = massage_qps_stats_helpers.percentile( 359 "core_tcp_write_size_95p"] = massage_qps_stats_helpers.percentile( 362 "core_tcp_write_size_99p"] = massage_qps_stats_helpers.percentile( 371 "core_tcp_write_iov_size_50p"] = massage_qps_stats_helpers.percentile( [all …]
|
D | massage_qps_stats_helpers.py | 40 def percentile(buckets, pctl, boundaries): function
|
/third_party/node/lib/internal/ |
D | histogram.js | 87 percentile(percentile) { argument 88 if (typeof percentile !== 'number') 89 throw new ERR_INVALID_ARG_TYPE('percentile', 'number', percentile); 91 if (NumberIsNaN(percentile) || percentile <= 0 || percentile > 100) 92 throw new ERR_INVALID_ARG_VALUE.RangeError('percentile', percentile); 94 return this[kHandle]?.percentile(percentile);
|
/third_party/node/src/ |
D | histogram-inl.h | 39 double Histogram::Percentile(double percentile) { in Percentile() argument 41 CHECK_GT(percentile, 0); in Percentile() 42 CHECK_LE(percentile, 100); in Percentile() 44 hdr_value_at_percentile(histogram_.get(), percentile)); in Percentile() 53 double key = iter.specifics.percentiles.percentile; in Percentiles()
|
D | histogram.cc | 95 double percentile = args[0].As<Number>()->Value(); in GetPercentile() local 96 args.GetReturnValue().Set((*histogram)->Percentile(percentile)); in GetPercentile() 336 double percentile = args[0].As<Number>()->Value(); in GetPercentile() local 337 args.GetReturnValue().Set((*histogram)->Percentile(percentile)); in GetPercentile()
|
/third_party/mindspore/mindspore/nn/metrics/ |
D | hausdorff_distance.py | 105 def __init__(self, distance_metric="euclidean", percentile=None, directed=False, crop=True): argument 110 … self.percentile = percentile if percentile is None else validator.check_value_type("percentile", 111 … percentile, [float]) 193 if not self.percentile: 195 if 0 <= self.percentile <= 100: 196 return np.percentile(surface_distance, self.percentile)
|
/third_party/node/test/sequential/ |
D | test-performance-eventloopdelay.js | 71 assert(histogram.percentile(n) >= 0); 82 () => histogram.percentile(i), 91 () => histogram.percentile(i),
|
/third_party/grpc/test/core/util/ |
D | histogram_test.cc | 28 static void expect_percentile(grpc_histogram* h, double percentile, in expect_percentile() argument 30 double got = grpc_histogram_percentile(h, percentile); in expect_percentile() 31 gpr_log(GPR_INFO, "@%f%%, expect %f <= %f <= %f", percentile, min_expect, got, in expect_percentile()
|
D | histogram.cc | 196 double grpc_histogram_percentile(grpc_histogram* h, double percentile) { in grpc_histogram_percentile() argument 197 return threshold_for_count_below(h, h->count * percentile / 100.0); in grpc_histogram_percentile()
|
D | histogram.h | 41 double grpc_histogram_percentile(grpc_histogram* histogram, double percentile);
|
/third_party/flutter/flutter/packages/flutter_driver/lib/src/driver/ |
D | timeline_summary.dart | 36 /// The [p]-th percentile frame rasterization time in milliseconds. 70 /// The [p]-th percentile frame rasterization time in milliseconds. 179 double _percentileInMillis(Iterable<Duration> durations, double percentile) { 182 assert(percentile >= 0.0 && percentile <= 100.0); 185 return doubles[((doubles.length - 1) * (percentile / 100)).round()];
|
/third_party/node/deps/histogram/src/ |
D | hdr_histogram.c | 646 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile) in hdr_value_at_percentile() argument 650 double requested_percentile = percentile < 100.0 ? percentile : 100.0; in hdr_value_at_percentile() 858 percentiles->percentile = 100.0; in percentile_iter_next() 876 percentiles->percentile = percentiles->percentile_to_iterate_to; in percentile_iter_next() 899 iter->specifics.percentiles.percentile = 0.0; in hdr_iter_percentile_init() 1127 double percentile = percentiles->percentile / 100.0; in hdr_percentiles_print() local 1129 double inverted_percentile = (1.0 / (1.0 - percentile)); in hdr_percentiles_print() 1132 stream, line_format, value, percentile, total_count, inverted_percentile) < 0) in hdr_percentiles_print()
|
D | hdr_histogram.h | 273 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile); 334 double percentile; member
|
/third_party/ffmpeg/libavfilter/ |
D | vf_xmedian.c | 40 float percentile; member 109 s->index = s->radius * 2.f * s->percentile; in init() 111 s->index = av_clip(s->radius * 2.f * s->percentile, 1, s->nb_inputs - 1); in init() 364 s->index = s->radius * 2.f * s->percentile; in process_command() 366 s->index = av_clip(s->radius * 2.f * s->percentile, 1, s->nb_inputs - 1); in process_command() 378 …{ "percentile", "set percentile", OFFSET(percentile),AV_OPT_TYPE_FLOAT,{.dbl=0.5}, 0, 1, .flags … 454 …{ "percentile", "set percentile", OFFSET(percentile), AV_OPT_TYPE_FLOAT, {.dbl=0.5}, 0, …
|
D | median.h | 34 float percentile; member
|
D | vf_median.c | 63 …{ "percentile", "set median percentile", OFFSET(percentile), AV_OPT_TYPE_FLOAT, {.dbl=.5}, 0., 1.,… 131 s->t = (2 * s->radius * s->radiusV + s->radiusV + s->radius) * 2.f * s->percentile; in check_params()
|
/third_party/grpc/tools/profiling/latency_profile/ |
D | profile_analyzer.py | 186 def percentile(N, percent, key=lambda x: x): function 215 return '%.1f/%.1f/%.1f' % (1e6 * percentile(values, 0.5), 1e6 * percentile( 216 values, 0.9), 1e6 * percentile(values, 0.99))
|
/third_party/node/test/parallel/ |
D | test-perf-hooks-histogram.js | 37 assert.strictEqual(h.percentile(1), 1); 38 assert.strictEqual(h.percentile(100), 1);
|
/third_party/grpc/src/core/lib/debug/ |
D | stats.cc | 138 double percentile) { in grpc_stats_histo_percentile() argument 145 static_cast<double>(count) * percentile / 100.0); in grpc_stats_histo_percentile()
|
D | stats.h | 66 double percentile);
|
/third_party/boost/libs/sort/doc/ |
D | pdqsort.qbk | 125 percentile or over 87,5% percentile - the partition is highly unbalanced. When this happens we will 129 The 1/8th percentile is not chosen arbitrarily. An upper bound of quicksorts worst case runtime can 134 Where n is the number of elements, and p is the percentile of the pivot after partitioning.
|
/third_party/ffmpeg/libavutil/ |
D | hdr_dynamic_metadata.h | 52 AVRational percentile; member
|
/third_party/mindspore/tests/ut/python/metrics/ |
D | test_hausdorff_distance.py | 57 HausdorffDistance(distance_metric="eucli", percentile=None, directed=False, crop=False)
|
/third_party/node/doc/api/ |
D | perf_hooks.md | 702 console.log(h.percentile(50)); 703 console.log(h.percentile(99)); 748 ### `histogram.percentile(percentile)` 753 * `percentile` {number} A percentile value in the range (0, 100]. 756 Returns the value at the given percentile. 765 Returns a `Map` object detailing the accumulated percentile distribution.
|
/third_party/skia/tools/perf-canvaskit-puppeteer/ |
D | README.md | 30 We include metrics such as the 90th, 95th, and 99th percentile frame, average frame time, median 48 percentile frame time.
|