| 628 | } |
| 629 | |
| 630 | int64_t hdr_min(const struct hdr_histogram* h) |
| 631 | { |
| 632 | if (0 < hdr_count_at_index(h, 0)) |
| 633 | { |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | return non_zero_min(h); |
| 638 | } |
| 639 | |
| 640 | int64_t hdr_value_at_percentile(const struct hdr_histogram* h, double percentile) |
| 641 | { |
no test coverage detected