Lines Matching full:bucket
23 // agree exactly in type, bucket size and range.
29 // bucket count as 2 (when you give a custom ranges vector containing only 1
31 // For these 3 kinds of histograms, the max bucket count is always
37 // That bucket allocation would actually result from construction of a histogram
40 // Note that the underflow bucket [0,1) and the overflow bucket [64,infinity)
43 // The above example has an exponential ratio of 2 (doubling the bucket width
44 // in each consecutive bucket. The Histogram class automatically calculates
48 // consecutive bucket widths will be approximately somewhere around the 50th
169 // Check to see if bucket ranges, counts and tallies in the snapshot are
170 // consistent with the bucket ranges and checksums in our histogram. This can
228 // Traditionally, histograms allocate their own memory for the bucket
247 // Method to override to skip the display of the i'th bucket if it's empty.
253 // Return a string description of what goes in a given bucket.
255 // be a name (or string description) given to the bucket.
281 // Find out how large (graphically) the largest bucket will appear to be.
307 Sample declared_min_; // Less than this goes into the first bucket.
308 Sample declared_max_; // Over this goes into the last bucket.
333 default underflow bucket. */
416 // If we have a description for a bucket, then return that. Otherwise
421 // an empty bucket).
429 // For some ranges, we store a printable description of a bucket range.
515 // This function ensures that a guard bucket exists right after any
517 // so that invalid samples never fall into the same bucket as valid samples.