Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc210 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration), in Heap()
1000 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1006 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1028 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in ResetGcPerformanceInfo()
2548 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
2552 uint64_t num_of_windows = time_since_last_update / kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2553 if (time_since_last_update >= kGcCountRateHistogramWindowDuration) { in UpdateGcCountRateHistograms()
2565 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
2569 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
Dheap.h1187 static constexpr uint64_t kGcCountRateHistogramWindowDuration = MsToNs(10 * 1000); // 10s. variable