Lines Matching defs:h
28 static int32_t normalize_index(const struct hdr_histogram* h, int32_t index) in normalize_index()
51 static int64_t counts_get_direct(const struct hdr_histogram* h, int32_t index) in counts_get_direct()
56 static int64_t counts_get_normalised(const struct hdr_histogram* h, int32_t index) in counts_get_normalised()
62 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised()
70 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised_atomic()
78 static void update_min_max(struct hdr_histogram* h, int64_t value) in update_min_max()
84 static void update_min_max_atomic(struct hdr_histogram* h, int64_t value) in update_min_max_atomic()
162 static int32_t get_bucket_index(const struct hdr_histogram* h, int64_t value) in get_bucket_index()
173 static int32_t counts_index(const struct hdr_histogram* h, int32_t bucket_index, int32_t sub_bucket… in counts_index()
189 int32_t counts_index_for(const struct hdr_histogram* h, int64_t value) in counts_index_for()
197 int64_t hdr_value_at_index(const struct hdr_histogram *h, int32_t index) in hdr_value_at_index()
211 int64_t hdr_size_of_equivalent_value_range(const struct hdr_histogram* h, int64_t value) in hdr_size_of_equivalent_value_range()
219 static int64_t lowest_equivalent_value(const struct hdr_histogram* h, int64_t value) in lowest_equivalent_value()
226 int64_t hdr_next_non_equivalent_value(const struct hdr_histogram *h, int64_t value) in hdr_next_non_equivalent_value()
231 static int64_t highest_equivalent_value(const struct hdr_histogram* h, int64_t value) in highest_equivalent_value()
236 int64_t hdr_median_equivalent_value(const struct hdr_histogram *h, int64_t value) in hdr_median_equivalent_value()
241 static int64_t non_zero_min(const struct hdr_histogram* h) in non_zero_min()
251 void hdr_reset_internal_counters(struct hdr_histogram* h) in hdr_reset_internal_counters()
366 void hdr_init_preallocated(struct hdr_histogram* h, struct hdr_histogram_bucket_config* cfg) in hdr_init_preallocated()
422 void hdr_close(struct hdr_histogram* h) in hdr_close()
436 void hdr_reset(struct hdr_histogram *h) in hdr_reset()
444 size_t hdr_get_memory_size(struct hdr_histogram *h) in hdr_get_memory_size()
458 bool hdr_record_value(struct hdr_histogram* h, int64_t value) in hdr_record_value()
463 bool hdr_record_value_atomic(struct hdr_histogram* h, int64_t value) in hdr_record_value_atomic()
468 bool hdr_record_values(struct hdr_histogram* h, int64_t value, int64_t count) in hdr_record_values()
490 bool hdr_record_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count) in hdr_record_values_atomic()
512 bool hdr_record_corrected_value(struct hdr_histogram* h, int64_t value, int64_t expected_interval) in hdr_record_corrected_value()
517 bool hdr_record_corrected_value_atomic(struct hdr_histogram* h, int64_t value, int64_t expected_int… in hdr_record_corrected_value_atomic()
522 bool hdr_record_corrected_values(struct hdr_histogram* h, int64_t value, int64_t count, int64_t exp… in hdr_record_corrected_values()
548 bool hdr_record_corrected_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count, int6… in hdr_record_corrected_values_atomic()
574 int64_t hdr_add(struct hdr_histogram* h, const struct hdr_histogram* from) in hdr_add()
595 struct hdr_histogram* h, struct hdr_histogram* from, int64_t expected_interval) in hdr_add_while_correcting_for_coordinated_omission()
626 int64_t hdr_max(const struct hdr_histogram* h) in hdr_max()
636 int64_t hdr_min(const struct hdr_histogram* h) in hdr_min()
646 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile) in hdr_value_at_percentile()
671 double hdr_mean(const struct hdr_histogram* h) in hdr_mean()
689 double hdr_stddev(const struct hdr_histogram* h) in hdr_stddev()
709 bool hdr_values_are_equivalent(const struct hdr_histogram* h, int64_t a, int64_t b) in hdr_values_are_equivalent()
714 int64_t hdr_lowest_equivalent_value(const struct hdr_histogram* h, int64_t value) in hdr_lowest_equivalent_value()
719 int64_t hdr_count_at_value(const struct hdr_histogram* h, int64_t value) in hdr_count_at_value()
724 int64_t hdr_count_at_index(const struct hdr_histogram* h, int32_t index) in hdr_count_at_index()
815 void hdr_iter_init(struct hdr_iter* iter, const struct hdr_histogram* h) in hdr_iter_init()
890 void hdr_iter_percentile_init(struct hdr_iter* iter, const struct hdr_histogram* h, int32_t ticks_p… in hdr_iter_percentile_init()
956 void hdr_iter_recorded_init(struct hdr_iter* iter, const struct hdr_histogram* h) in hdr_iter_recorded_init()
1011 void hdr_iter_linear_init(struct hdr_iter* iter, const struct hdr_histogram* h, int64_t value_units… in hdr_iter_linear_init()
1068 const struct hdr_histogram* h, in hdr_iter_log_init()
1101 struct hdr_histogram* h, FILE* stream, int32_t ticks_per_half_distance, in hdr_percentiles_print()