Lines Matching refs:sample

89 #define UMA_HISTOGRAM_SCALED_ENUMERATION(name, sample, count, scale) \  argument
91 name, sample, count, scale, \
98 #define UMA_HISTOGRAM_BOOLEAN(name, sample) \ argument
99 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddBoolean(sample), \
115 #define UMA_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) \ argument
117 name, sample, value_max, base::HistogramBase::kUmaTargetedHistogramFlag)
134 #define UMA_HISTOGRAM_SCALED_EXACT_LINEAR(name, sample, count, value_max, \ argument
137 name, sample, count, value_max, scale, \
160 #define UMA_HISTOGRAM_COUNTS_100(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
161 name, sample, 1, 100, 50)
163 #define UMA_HISTOGRAM_COUNTS_1000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
164 name, sample, 1, 1000, 50)
166 #define UMA_HISTOGRAM_COUNTS_10000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
167 name, sample, 1, 10000, 50)
169 #define UMA_HISTOGRAM_COUNTS_100000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
170 name, sample, 1, 100000, 50)
172 #define UMA_HISTOGRAM_COUNTS_1M(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
173 name, sample, 1, 1000000, 50)
175 #define UMA_HISTOGRAM_COUNTS_10M(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
176 name, sample, 1, 10000000, 50)
187 #define UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ argument
189 name, sample, min, max, bucket_count, \
206 #define UMA_HISTOGRAM_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
207 name, sample, base::TimeDelta::FromMilliseconds(1), \
212 #define UMA_HISTOGRAM_MEDIUM_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
213 name, sample, base::TimeDelta::FromMilliseconds(10), \
217 #define UMA_HISTOGRAM_LONG_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
218 name, sample, base::TimeDelta::FromMilliseconds(1), \
222 #define UMA_HISTOGRAM_LONG_TIMES_100(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
223 name, sample, base::TimeDelta::FromMilliseconds(1), \
233 #define UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \ argument
235 name, AddTimeMillisecondsGranularity(sample), \
252 #define UMA_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(name, sample, min, max, \ argument
255 name, AddTimeMicrosecondsGranularity(sample), \
293 #define UMA_HISTOGRAM_MEMORY_KB(name, sample) \ argument
294 UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1000, 500000, 50)
297 #define UMA_HISTOGRAM_MEMORY_LARGE_MB(name, sample) \ argument
298 UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 64000, 100)
311 #define UMA_STABILITY_HISTOGRAM_COUNTS_100(name, sample) \ argument
312 UMA_STABILITY_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 100, 50)
314 #define UMA_STABILITY_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, \ argument
317 name, sample, min, max, bucket_count, \
320 #define UMA_STABILITY_HISTOGRAM_ENUMERATION(name, sample, enum_max) \ argument
322 name, sample, enum_max, \
363 #define UMA_HISTOGRAM_COUNTS(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
364 name, sample, 1, 1000000, 50)
367 #define UMA_HISTOGRAM_MEMORY_MB(name, sample) \ argument
368 UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000, 50)
377 #define UMA_HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \ argument
378 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \