Lines Matching defs:min
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);
165 int min() const { return min_; }
180 void Initialize(const char* name, int min, int max, int num_buckets,
183 min_ = min;
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) \
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##_;