| 618 | |
| 619 | |
| 620 | int64_t hdr_max(const struct hdr_histogram* h) |
| 621 | { |
| 622 | if (0 == h->max_value) |
| 623 | { |
| 624 | return 0; |
| 625 | } |
| 626 | |
| 627 | return highest_equivalent_value(h, h->max_value); |
| 628 | } |
| 629 | |
| 630 | int64_t hdr_min(const struct hdr_histogram* h) |
| 631 | { |
no test coverage detected