Searched refs:kGcCountRateHistogramWindowDuration (Results 1 – 2 of 2) sorted by relevance
276 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration), in Heap()1035 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()1041 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()1070 (NanoTime() / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in ResetGcPerformanceInfo()2703 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()2707 uint64_t num_of_windows = time_since_last_update / kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()2708 if (time_since_last_update >= kGcCountRateHistogramWindowDuration) { in UpdateGcCountRateHistograms()2720 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()2724 DCHECK_EQ(last_update_time_gc_count_rate_histograms_ % kGcCountRateHistogramWindowDuration, 0U); in UpdateGcCountRateHistograms()
1397 static constexpr uint64_t kGcCountRateHistogramWindowDuration = MsToNs(10 * 1000); // 10s. variable