MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / update_min_max

Function update_min_max

deps/hdr_histogram/hdr_histogram.c:77–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77static void update_min_max(struct hdr_histogram* h, int64_t value)
78{
79 h->min_value = (value < h->min_value && value != 0) ? value : h->min_value;
80 h->max_value = (value > h->max_value) ? value : h->max_value;
81}
82
83static void update_min_max_atomic(struct hdr_histogram* h, int64_t value)
84{

Callers 1

hdr_record_valuesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected