Home
last modified time | relevance | path

Searched refs:hdr_histogram (Results 1 - 5 of 5) sorted by relevance

/third_party/node/deps/histogram/include/hdr/
H A Dhdr_histogram.h2 * hdr_histogram.h
6 * The source for the hdr_histogram utilises a few C99 constructs, specifically
17 struct hdr_histogram struct
42 * Allocate the memory and initialise the hdr_histogram.
65 struct hdr_histogram** result);
68 * Free the memory and close the hdr_histogram.
72 void hdr_close(struct hdr_histogram* h);
75 * Allocate the memory and initialise the hdr_histogram. This is the equivalent of calling
80 int hdr_alloc(int64_t highest_trackable_value, int significant_figures, struct hdr_histogram** result);
92 void hdr_reset(struct hdr_histogram*
[all...]
/third_party/node/deps/histogram/src/
H A Dhdr_histogram.c2 * hdr_histogram.c
16 #include <hdr/hdr_histogram.h>
34 static int32_t normalize_index(const struct hdr_histogram* h, int32_t index) in normalize_index()
57 static int64_t counts_get_direct(const struct hdr_histogram* h, int32_t index) in counts_get_direct()
62 static int64_t counts_get_normalised(const struct hdr_histogram* h, int32_t index) in counts_get_normalised()
68 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised()
76 struct hdr_histogram* h, int32_t index, int64_t value) in counts_inc_normalised_atomic()
84 static void update_min_max(struct hdr_histogram* h, int64_t value) in update_min_max()
90 static void update_min_max_atomic(struct hdr_histogram* h, int64_t value) in update_min_max_atomic()
168 static int32_t get_bucket_index(const struct hdr_histogram*
[all...]
H A Dhdr_tests.h6 #include <hdr/hdr_histogram.h>
12 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* compressed_len);
14 int hdr_decode_compressed(uint8_t* buffer, size_t length, struct hdr_histogram** histogram);
/third_party/node/src/
H A Dhistogram.h6 #include <hdr/hdr_histogram.h>
62 using HistogramPointer = DeleteFnPtr<hdr_histogram, hdr_close>;
H A Dhistogram.cc24 hdr_histogram* histogram; in Histogram()

Completed in 4 milliseconds