• Home
  • Raw
  • Download

Lines Matching refs:int64_t

19     int64_t lowest_trackable_value;
20 int64_t highest_trackable_value;
25 int64_t sub_bucket_mask;
28 int64_t min_value;
29 int64_t max_value;
33 int64_t total_count;
34 int64_t* counts;
62 int64_t lowest_trackable_value,
63 int64_t highest_trackable_value,
80 int hdr_alloc(int64_t highest_trackable_value, int significant_figures, struct hdr_histogram** resu…
111 bool hdr_record_value(struct hdr_histogram* h, int64_t value);
126 bool hdr_record_value_atomic(struct hdr_histogram* h, int64_t value);
139 bool hdr_record_values(struct hdr_histogram* h, int64_t value, int64_t count);
156 bool hdr_record_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count);
173 bool hdr_record_corrected_value(struct hdr_histogram* h, int64_t value, int64_t expexcted_interval);
194 bool hdr_record_corrected_value_atomic(struct hdr_histogram* h, int64_t value, int64_t expexcted_in…
207 bool hdr_record_corrected_values(struct hdr_histogram* h, int64_t value, int64_t count, int64_t exp…
224 …r_record_corrected_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count, int64_t ex…
236 int64_t hdr_add(struct hdr_histogram* h, const struct hdr_histogram* from);
248 int64_t hdr_add_while_correcting_for_coordinated_omission(
249 struct hdr_histogram* h, struct hdr_histogram* from, int64_t expected_interval);
257 int64_t hdr_min(const struct hdr_histogram* h);
265 int64_t hdr_max(const struct hdr_histogram* h);
273 int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile);
301 bool hdr_values_are_equivalent(const struct hdr_histogram* h, int64_t a, int64_t b);
312 int64_t hdr_lowest_equivalent_value(const struct hdr_histogram* h, int64_t value);
323 int64_t hdr_count_at_value(const struct hdr_histogram* h, int64_t value);
325 int64_t hdr_count_at_index(const struct hdr_histogram* h, int32_t index);
327 int64_t hdr_value_at_index(const struct hdr_histogram* h, int32_t index);
339 int64_t count_added_in_this_iteration_step;
344 int64_t value_units_per_bucket;
345 int64_t count_added_in_this_iteration_step;
346 int64_t next_value_reporting_level;
347 int64_t next_value_reporting_level_lowest_equivalent;
353 int64_t count_added_in_this_iteration_step;
354 int64_t next_value_reporting_level;
355 int64_t next_value_reporting_level_lowest_equivalent;
372 int64_t total_count;
374 int64_t count;
376 int64_t cumulative_count;
378 int64_t value;
379 int64_t highest_equivalent_value;
380 int64_t lowest_equivalent_value;
381 int64_t median_equivalent_value;
382 int64_t value_iterated_from;
383 int64_t value_iterated_to;
421 int64_t value_units_per_bucket);
429 int64_t value_units_first_bucket,
468 int64_t lowest_trackable_value;
469 int64_t highest_trackable_value;
470 int64_t unit_magnitude;
471 int64_t significant_figures;
474 int64_t sub_bucket_mask;
481 int64_t lowest_trackable_value,
482 int64_t highest_trackable_value,
488 int64_t hdr_size_of_equivalent_value_range(const struct hdr_histogram* h, int64_t value);
490 int64_t hdr_next_non_equivalent_value(const struct hdr_histogram* h, int64_t value);
492 int64_t hdr_median_equivalent_value(const struct hdr_histogram* h, int64_t value);