/third_party/node/lib/internal/ |
H A D | histogram.js | 182 * @param {number} percentile 185 percentile(percentile) { 188 validateNumber(percentile, 'percentile'); 190 if (NumberIsNaN(percentile) || percentile <= 0 || percentile > 100) 191 throw new ERR_INVALID_ARG_VALUE.RangeError('percentile', percentile); [all...] |
/third_party/node/src/ |
H A D | histogram-inl.h | 54 int64_t Histogram::Percentile(double percentile) const { in Percentile() 56 CHECK_GT(percentile, 0); in Percentile() 57 CHECK_LE(percentile, 100); in Percentile() 58 return hdr_value_at_percentile(histogram_.get(), percentile); in Percentile() 67 double key = iter.specifics.percentiles.percentile; in Percentiles()
|
H A D | histogram.cc | 140 double percentile = args[0].As<Number>()->Value(); in GetPercentile() local 141 double value = static_cast<double>((*histogram)->Percentile(percentile)); in GetPercentile() 151 double percentile = args[0].As<Number>()->Value(); in GetPercentileBigInt() local 152 int64_t value = (*histogram)->Percentile(percentile); in GetPercentileBigInt() 304 SetProtoMethodNoSideEffect(isolate, tmpl, "percentile", GetPercentile); in GetConstructorTemplate() 387 SetProtoMethodNoSideEffect(isolate, tmpl, "percentile", GetPercentile); in GetConstructorTemplate() 578 double percentile = args[0].As<Number>()->Value(); in GetPercentile() local 579 double value = static_cast<double>((*histogram)->Percentile(percentile)); in GetPercentile() 589 double percentile = args[0].As<Number>()->Value(); in GetPercentileBigInt() local 590 int64_t value = (*histogram)->Percentile(percentile); in GetPercentileBigInt() [all...] |
H A D | histogram.h | 42 inline int64_t Percentile(double percentile) const; 51 // percentile and one for the value at that percentile.
|
/third_party/node/test/sequential/ |
H A D | test-performance-eventloopdelay.js | 71 assert(histogram.percentile(n) >= 0); 82 () => histogram.percentile(i), 91 () => histogram.percentile(i),
|
/third_party/node/deps/v8/tools/ |
H A D | eval_gc_nvp.py | 113 for percentile in self.percentiles: 114 index = int(ceil((len(self.values) - 1) * percentile / 100)) 115 ret.append(" {0}%: {1}".format(percentile, sorted_values[index])) 195 for percentile in args.percentiles.split(','): 197 percentiles.append(float(percentile))
|
/third_party/node/deps/histogram/src/ |
H A D | hdr_histogram.c | 687 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile) in hdr_value_at_percentile() argument 689 double requested_percentile = percentile < 100.0 ? percentile : 100.0; in hdr_value_at_percentile() 693 if (percentile == 0.0) in hdr_value_at_percentile() 710 // i.e. to store the expected cumulative count at each percentile in hdr_value_at_percentiles() 928 percentiles->percentile = 100.0; in percentile_iter_next() 946 percentiles->percentile = percentiles->percentile_to_iterate_to; in percentile_iter_next() 969 iter->specifics.percentiles.percentile = 0.0; in hdr_iter_percentile_init() 1197 double percentile = percentiles->percentile / 100. in hdr_percentiles_print() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_xmedian.c | 43 float percentile; member 102 s->index = s->radius * 2.f * s->percentile; in init() 104 s->index = av_clip(s->radius * 2.f * s->percentile, 1, s->nb_inputs - 1); in init() 194 s->index = s->radius * 2.f * s->percentile; in update_index() 196 s->index = av_clip(s->radius * 2.f * s->percentile, 1, s->nb_inputs - 1); in update_index() 364 { "percentile", "set percentile", OFFSET(percentile),AV_OPT_TYPE_FLOAT,{.dbl=0.5}, 0, 1, .flags =TFLAGS }, 441 { "percentile", "set percentile", OFFSE [all...] |
H A D | median.h | 34 float percentile; member
|
H A D | vf_median.c | 62 { "percentile", "set median percentile", OFFSET(percentile), AV_OPT_TYPE_FLOAT, {.dbl=.5}, 0., 1., FLAGS }, 125 s->t = (2 * s->radius * s->radiusV + s->radiusV + s->radius) * 2.f * s->percentile; in check_params()
|
H A D | vf_showinfo.c | 278 av_q2d(params->distribution_maxrgb[i].percentile)); in dump_dynamic_hdr_plus()
|
/third_party/node/deps/histogram/include/hdr/ |
H A D | hdr_histogram.h | 268 * Get the value at a specific percentile. 271 * @param percentile The percentile to get the value for 273 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile); 346 double percentile; member 460 * Print out a percentile based histogram to the supplied stream. Note that
|
/third_party/ffmpeg/libavutil/ |
H A D | hdr_dynamic_metadata.h | 36 * Represents the percentile at a specific percentage in 41 * The percentage value corresponding to a specific percentile linearized 48 * The linearized maxRGB value at a specific percentile in the processing 52 AVRational percentile; member
|
/third_party/backends/backend/genesys/ |
H A D | utilities.h | 104 float percentile) in compute_array_percentile_approx() 118 std::size_t select_elem = std::min(static_cast<std::size_t>(line_count * percentile), in compute_array_percentile_approx() 102 compute_array_percentile_approx(T* result, const T* data, std::size_t line_count, std::size_t elements_per_line, float percentile) compute_array_percentile_approx() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | dynamic_hdr10_plus.c | 126 params->distribution_maxrgb[i].percentile = in ff_parse_itu_t_t35_to_dynamic_hdr10_plus()
|
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 2163 params->distribution_maxrgb[i].percentile,'/'); in print_dynamic_hdr10_plus()
|