| 238 | } |
| 239 | |
| 240 | static int64_t non_zero_min(const struct hdr_histogram* h) |
| 241 | { |
| 242 | if (INT64_MAX == h->min_value) |
| 243 | { |
| 244 | return INT64_MAX; |
| 245 | } |
| 246 | |
| 247 | return lowest_equivalent_value(h, h->min_value); |
| 248 | } |
| 249 | |
| 250 | void hdr_reset_internal_counters(struct hdr_histogram* h) |
| 251 | { |
no test coverage detected