Home
last modified time | relevance | path

Searched refs:highest_trackable_value (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/histogram/include/hdr/
H A Dhdr_histogram.h20 int64_t highest_trackable_value; member
50 * @param highest_trackable_value The largest possible value to be put into the
63 int64_t highest_trackable_value,
76 * hdr_init(1, highest_trackable_value, significant_figures, result);
80 int hdr_alloc(int64_t highest_trackable_value, int significant_figures, struct hdr_histogram** result);
108 * @return false if the value is larger than the highest_trackable_value and can't be recorded,
123 * @return false if the value is larger than the highest_trackable_value and can't be recorded,
136 * @return false if any value is larger than the highest_trackable_value and can't be recorded,
153 * @return false if any value is larger than the highest_trackable_value and can't be recorded,
170 * @return false if the value is larger than the highest_trackable_value an
481 int64_t highest_trackable_value; global() member
[all...]
/third_party/node/deps/histogram/src/
H A Dhdr_histogram.c345 int64_t highest_trackable_value, in hdr_calculate_bucket_config()
354 lowest_discernible_value * 2 > highest_trackable_value) in hdr_calculate_bucket_config()
361 cfg->highest_trackable_value = highest_trackable_value; in hdr_calculate_bucket_config()
383 cfg->bucket_count = buckets_needed_to_cover_value(highest_trackable_value, cfg->sub_bucket_count, (int32_t)cfg->unit_magnitude); in hdr_calculate_bucket_config()
392 h->highest_trackable_value = cfg->highest_trackable_value; in hdr_init_preallocated()
410 int64_t highest_trackable_value, in hdr_init()
418 int r = hdr_calculate_bucket_config(lowest_discernible_value, highest_trackable_value, significant_figures, &cfg); in hdr_init()
453 int hdr_alloc(int64_t highest_trackable_value, in argument
343 hdr_calculate_bucket_config( int64_t lowest_discernible_value, int64_t highest_trackable_value, int significant_figures, struct hdr_histogram_bucket_config* cfg) hdr_calculate_bucket_config() argument
408 hdr_init( int64_t lowest_discernible_value, int64_t highest_trackable_value, int significant_figures, struct hdr_histogram** result) hdr_init() argument
[all...]

Completed in 3 milliseconds