D | metrics.h | 104 #define RTC_HISTOGRAM_COUNTS_100(name, sample) \ argument 105 RTC_HISTOGRAM_COUNTS(name, sample, 1, 100, 50) 107 #define RTC_HISTOGRAM_COUNTS_200(name, sample) \ argument 108 RTC_HISTOGRAM_COUNTS(name, sample, 1, 200, 50) 110 #define RTC_HISTOGRAM_COUNTS_500(name, sample) \ argument 111 RTC_HISTOGRAM_COUNTS(name, sample, 1, 500, 50) 113 #define RTC_HISTOGRAM_COUNTS_1000(name, sample) \ argument 114 RTC_HISTOGRAM_COUNTS(name, sample, 1, 1000, 50) 116 #define RTC_HISTOGRAM_COUNTS_10000(name, sample) \ argument 117 RTC_HISTOGRAM_COUNTS(name, sample, 1, 10000, 50) [all …]
|