Lines Matching defs:count
129 * Records count values in the histogram, will round this value of to a
135 * @param count Number of 'value's to add to the histogram
139 bool hdr_record_values(struct hdr_histogram* h, int64_t value, int64_t count);
142 * Records count values in the histogram, will round this value of to a
152 * @param count Number of 'value's to add to the histogram
156 bool hdr_record_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count);
197 * Record a value in the histogram 'count' times. Applies the same correcting logic
202 * @param count Number of 'value's to add to the histogram
207 bool hdr_record_corrected_values(struct hdr_histogram* h, int64_t value, int64_t count, int64_t expected_interval);
210 * Record a value in the histogram 'count' times. Applies the same correcting logic
219 * @param count Number of 'value's to add to the histogram
224 bool hdr_record_corrected_values_atomic(struct hdr_histogram* h, int64_t value, int64_t count, int64_t expected_interval);
306 * equivalent values are counted in a common total count.
318 * equivalent values are counted in a common total count.
327 * Get the count of recorded values at a specific value
331 * @param value The value for which to provide the recorded count
332 * @return The total count of values recorded in the histogram within the value range that is
386 int64_t count;
387 /** sum of all of the counts up to and including the count at this index */