Home | History | Annotate | Download | only in metrics

Lines Matching refs:bucket_count

19 // are not counted by the constructor in the user supplied "bucket_count"
76 #define HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) do { \
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
90 #define HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) do { \
93 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
100 #define HISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) do { \
103 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
139 #define DHISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
140 HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count)
141 #define DHISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) \
142 HISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count)
143 #define DHISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
144 HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count)
155 #define DHISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
157 #define DHISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) \
159 #define DHISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
186 #define UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) do { \
189 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
196 #define UMA_HISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) do { \
199 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
214 #define UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) do { \
217 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
379 size_t bucket_count,
384 size_t bucket_count,
445 virtual size_t bucket_count() const;
451 size_t bucket_count);
455 size_t bucket_count);
461 Sample maximum, size_t bucket_count);
463 TimeDelta maximum, size_t bucket_count);
565 // The dimension of ranges_ is bucket_count + 1.
593 size_t bucket_count,
598 size_t bucket_count,
610 Sample maximum, size_t bucket_count);
613 TimeDelta maximum, size_t bucket_count);