| 228 | } |
| 229 | |
| 230 | static int64_t highest_equivalent_value(const struct hdr_histogram* h, int64_t value) |
| 231 | { |
| 232 | return hdr_next_non_equivalent_value(h, value) - 1; |
| 233 | } |
| 234 | |
| 235 | int64_t hdr_median_equivalent_value(const struct hdr_histogram *h, int64_t value) |
| 236 | { |
no test coverage detected