Home
last modified time | relevance | path

Searched refs:histogram (Results 1 – 4 of 4) sorted by relevance

/art/libartbase/base/metrics/
Dmetrics_test.cc138 MetricsHistogram<DatumId::kYoungGcCollectionTime, 5, 0, 100> histogram; in TEST_F() local
141 histogram.Add(10); in TEST_F()
144 histogram.Add(20); in TEST_F()
145 histogram.Add(25); in TEST_F()
148 histogram.Add(56); in TEST_F()
149 histogram.Add(57); in TEST_F()
150 histogram.Add(58); in TEST_F()
151 histogram.Add(59); in TEST_F()
154 histogram.Add(70); in TEST_F()
155 histogram.Add(70); in TEST_F()
[all …]
Dmetrics_test.h67 const MetricsHistogram<histogram_type, num_buckets, low_value, high_value>& histogram) { in GetBuckets() argument
78 histogram.Report(&backend); in GetBuckets()
DREADME.md10 (such as counter or histogram), and any additional arguments that are needed.
43 The `num_buckets` parameter affects memory usage for the histogram and data
/art/oatdump/
Doatdump.cc2691 std::map<size_t, size_t> histogram; in DumpImtStats() local
2730 histogram[0]++; in DumpImtStats()
2733 histogram[current_table->NumEntries(pointer_size)]++; in DumpImtStats()
2736 histogram[1]++; in DumpImtStats()
2754 for (auto& bucket : histogram) { in DumpImtStats()
2762 double count_zero = count_one + histogram[0]; in DumpImtStats()