Home
last modified time | relevance | path

Searched refs:kGcCountRateHistogramWindowDuration (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc401 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration), in Heap()
1296 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1302 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1343 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in ResetGcPerformanceInfo()
2924 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
2928 uint64_t num_of_windows = time_since_last_update / kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2938 if (time_since_last_update >= kGcCountRateHistogramWindowDuration) { in UpdateGcCountRateHistograms()
2950 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2954 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
Dheap.h1663 static constexpr uint64_t kGcCountRateHistogramWindowDuration = MsToNs(10 * 1000); // 10s. variable