Home
last modified time | relevance | path

Searched refs:hdr_histogram (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/histogram/src/
Dhdr_histogram.h17 struct hdr_histogram struct
65 struct hdr_histogram** result);
72 void hdr_close(struct hdr_histogram* h);
80 int hdr_alloc(int64_t highest_trackable_value, int significant_figures, struct hdr_histogram** resu…
92 void hdr_reset(struct hdr_histogram* h);
100 size_t hdr_get_memory_size(struct hdr_histogram* h);
111 bool hdr_record_value(struct hdr_histogram* h, int64_t value);
126 bool hdr_record_value_atomic(struct hdr_histogram* h, int64_t value);
139 bool hdr_record_values(struct hdr_histogram* h, int64_t value, int64_t count);
156 bool hdr_record_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count);
[all …]
Dhdr_histogram.c28 static int32_t normalize_index(const struct hdr_histogram* h, int32_t index) in normalize_index()
51 static int64_t counts_get_direct(const struct hdr_histogram* h, int32_t index) in counts_get_direct()
56 static int64_t counts_get_normalised(const struct hdr_histogram* h, int32_t index) in counts_get_normalised()
62 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised()
70 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised_atomic()
78 static void update_min_max(struct hdr_histogram* h, int64_t value) in update_min_max()
84 static void update_min_max_atomic(struct hdr_histogram* h, int64_t value) in update_min_max_atomic()
162 static int32_t get_bucket_index(const struct hdr_histogram* h, int64_t value) in get_bucket_index()
173 static int32_t counts_index(const struct hdr_histogram* h, int32_t bucket_index, int32_t sub_bucket… in counts_index()
189 int32_t counts_index_for(const struct hdr_histogram* h, int64_t value) in counts_index_for()
[all …]
Dhdr_tests.h12 int32_t counts_index_for(const struct hdr_histogram* h, int64_t value);
13 int hdr_encode_compressed(struct hdr_histogram* h, uint8_t** compressed_histogram, size_t* compress…
14 int hdr_decode_compressed(uint8_t* buffer, size_t length, struct hdr_histogram** histogram);
/third_party/node/deps/histogram/
Dhistogram.gyp15 'src/hdr_histogram.c',
/third_party/node/src/
Dhistogram.h54 using HistogramPointer = DeleteFnPtr<hdr_histogram, hdr_close>;
Dhistogram.cc19 hdr_histogram* histogram; in Histogram()