Lines Matching refs:sample
27 #define LOCAL_HISTOGRAM_BOOLEAN(name, sample) \ argument
28 STATIC_HISTOGRAM_POINTER_BLOCK(name, AddBoolean(sample), \
44 #define LOCAL_HISTOGRAM_COUNTS_100(name, sample) \ argument
45 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 100, 50)
47 #define LOCAL_HISTOGRAM_COUNTS_10000(name, sample) \ argument
48 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 10000, 50)
50 #define LOCAL_HISTOGRAM_COUNTS_1000000(name, sample) \ argument
51 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000000, 50)
53 #define LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ argument
55 name, sample, min, max, bucket_count, base::HistogramBase::kNoFlags)
63 #define LOCAL_HISTOGRAM_TIMES(name, sample) LOCAL_HISTOGRAM_CUSTOM_TIMES( \ argument
64 name, sample, base::TimeDelta::FromMilliseconds(1), \
67 #define LOCAL_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \ argument
69 name, AddTimeMillisecondsGranularity(sample), \
78 #define LOCAL_HISTOGRAM_MEMORY_KB(name, sample) LOCAL_HISTOGRAM_CUSTOM_COUNTS( \ argument
79 name, sample, 1000, 500000, 50)
87 #define LOCAL_HISTOGRAM_COUNTS(name, sample) \ argument
88 LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000000, 50)