reset a histogram to zero. */
| 428 | |
| 429 | /* reset a histogram to zero. */ |
| 430 | void hdr_reset(struct hdr_histogram *h) |
| 431 | { |
| 432 | h->total_count=0; |
| 433 | h->min_value = INT64_MAX; |
| 434 | h->max_value = 0; |
| 435 | memset(h->counts, 0, (sizeof(int64_t) * h->counts_len)); |
| 436 | } |
| 437 | |
| 438 | size_t hdr_get_memory_size(struct hdr_histogram *h) |
| 439 | { |