Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc273 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration), in Heap()
1124 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1130 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1159 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in ResetGcPerformanceInfo()
2835 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
2839 uint64_t num_of_windows = time_since_last_update / kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2840 if (time_since_last_update >= kGcCountRateHistogramWindowDuration) { in UpdateGcCountRateHistograms()
2852 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2856 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
Dheap.h1400 static constexpr uint64_t kGcCountRateHistogramWindowDuration = MsToNs(10 * 1000); // 10s. variable