Searched refs:kGcCountRateHistogramWindowDuration (Results 1 – 2 of 2) sorted by relevance
344 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration), in Heap()1186 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()1192 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()1232 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in ResetGcPerformanceInfo()2766 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()2770 uint64_t num_of_windows = time_since_last_update / kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()2780 if (time_since_last_update >= kGcCountRateHistogramWindowDuration) { in UpdateGcCountRateHistograms()2792 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()2796 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
1566 static constexpr uint64_t kGcCountRateHistogramWindowDuration = MsToNs(10 * 1000); // 10s. variable