Searched refs:rss_histogram_ (Results 1 – 2 of 2) sorted by relevance
71 rss_histogram_((name_ + " peak-rss").c_str(), kMemBucketSize, kMemBucketCount), in GarbageCollector()104 rss_histogram_.Reset(); in ResetCumulativeStatistics()157 rss_histogram_.AddValue(rss / KB); in ExtractRssFromMincore()277 rss_histogram_.Reset(); in ResetMeasurements()353 if (rss_histogram_.SampleSize() > 0) { in DumpPerformanceInfo()354 os << rss_histogram_.Name() in DumpPerformanceInfo()355 << ": Avg: " << PrettySize(rss_histogram_.Mean() * KB) in DumpPerformanceInfo()356 << " Max: " << PrettySize(rss_histogram_.Max() * KB) in DumpPerformanceInfo()357 << " Min: " << PrettySize(rss_histogram_.Min() * KB) << "\n"; in DumpPerformanceInfo()359 rss_histogram_.DumpBins(os); in DumpPerformanceInfo()
161 Histogram<uint64_t> rss_histogram_; variable