Lines Matching refs:sample
122 #define LOCAL_HISTOGRAM_TIMES(name, sample) LOCAL_HISTOGRAM_CUSTOM_TIMES( \ argument
123 name, sample, base::TimeDelta::FromMilliseconds(1), \
128 #define LOCAL_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \ argument
129 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddTime(sample), \
133 #define LOCAL_HISTOGRAM_COUNTS(name, sample) LOCAL_HISTOGRAM_CUSTOM_COUNTS( \ argument
134 name, sample, 1, 1000000, 50)
136 #define LOCAL_HISTOGRAM_COUNTS_100(name, sample) \ argument
137 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 100, 50)
139 #define LOCAL_HISTOGRAM_COUNTS_10000(name, sample) \ argument
140 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 10000, 50)
142 #define LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ argument
143 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \
148 #define HISTOGRAM_ENUMERATION_WITH_FLAG(name, sample, boundary, flag) \ argument
149 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \
156 #define LOCAL_HISTOGRAM_BOOLEAN(name, sample) \ argument
157 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddBoolean(sample), \
166 #define LOCAL_HISTOGRAM_ENUMERATION(name, sample, boundary_value) \ argument
167 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \
176 #define LOCAL_HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \ argument
177 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \
181 #define LOCAL_HISTOGRAM_MEMORY_KB(name, sample) LOCAL_HISTOGRAM_CUSTOM_COUNTS( \ argument
182 name, sample, 1000, 500000, 50)
190 #define UMA_HISTOGRAM_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
191 name, sample, base::TimeDelta::FromMilliseconds(1), \
194 #define UMA_HISTOGRAM_MEDIUM_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
195 name, sample, base::TimeDelta::FromMilliseconds(10), \
199 #define UMA_HISTOGRAM_LONG_TIMES(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
200 name, sample, base::TimeDelta::FromMilliseconds(1), \
205 #define UMA_HISTOGRAM_LONG_TIMES_100(name, sample) UMA_HISTOGRAM_CUSTOM_TIMES( \ argument
206 name, sample, base::TimeDelta::FromMilliseconds(1), \
209 #define UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \ argument
210 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddTime(sample), \
214 #define UMA_HISTOGRAM_COUNTS(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
215 name, sample, 1, 1000000, 50)
217 #define UMA_HISTOGRAM_COUNTS_100(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
218 name, sample, 1, 100, 50)
220 #define UMA_HISTOGRAM_COUNTS_1000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
221 name, sample, 1, 1000, 50)
223 #define UMA_HISTOGRAM_COUNTS_10000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
224 name, sample, 1, 10000, 50)
226 #define UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ argument
227 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \
231 #define UMA_HISTOGRAM_MEMORY_KB(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
232 name, sample, 1000, 500000, 50)
234 #define UMA_HISTOGRAM_MEMORY_MB(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
235 name, sample, 1, 1000, 50)
237 #define UMA_HISTOGRAM_MEMORY_LARGE_MB(name, sample) \ argument
238 UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 64000, 100)
243 #define UMA_HISTOGRAM_BOOLEAN(name, sample) \ argument
244 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddBoolean(sample), \
250 #define UMA_HISTOGRAM_ENUMERATION(name, sample, boundary_value) \ argument
251 HISTOGRAM_ENUMERATION_WITH_FLAG(name, sample, boundary_value, \
257 #define UMA_STABILITY_HISTOGRAM_ENUMERATION(name, sample, boundary_value) \ argument
258 HISTOGRAM_ENUMERATION_WITH_FLAG(name, sample, boundary_value, \
261 #define UMA_HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \ argument
262 STATIC_HISTOGRAM_POINTER_BLOCK(name, Add(sample), \