Lines Matching defs:max
69 // function. min and max define the expected minimum and maximum
72 void* CreateHistogram(const char* name, int min, int max, size_t buckets) {
74 return create_histogram_function_(name, min, max, buckets);
166 int max() const { return max_; }
180 void Initialize(const char* name, int min, int max, int num_buckets,
184 max_ = max;
254 void Initialize(const char* name, int min, int max,
257 Histogram::Initialize(name, min, max, num_buckets, counters);
269 NestedTimedHistogram(const char* name, int min, int max,
273 Initialize(name, min, max, resolution, num_buckets, counters);
507 #define HR(name, caption, min, max, num_buckets) \
515 #define HT(name, caption, max, res) \
523 #define HT(name, caption, max, res) \
531 #define HT(name, caption, max, res) \
572 #define RATE_ID(name, caption, max, res) k_##name,
630 void* CreateHistogram(const char* name, int min, int max, size_t buckets) {
631 return stats_table_.CreateHistogram(name, min, max, buckets);
640 #define HR(name, caption, min, max, num_buckets) Histogram name##_;
644 #define HT(name, caption, max, res) NestedTimedHistogram name##_;
649 #define HT(name, caption, max, res) TimedHistogram name##_;