Searched refs:rss_histogram_ (Results 1 – 2 of 2) sorted by relevance
70 rss_histogram_((name_ + " peak-rss").c_str(), kMemBucketSize, kMemBucketCount), in GarbageCollector()88 rss_histogram_.Reset(); in ResetCumulativeStatistics()141 rss_histogram_.AddValue(rss / KB); in ExtractRssFromMincore()229 rss_histogram_.Reset(); in ResetMeasurements()303 if (rss_histogram_.SampleSize() > 0) { in DumpPerformanceInfo()304 os << rss_histogram_.Name() in DumpPerformanceInfo()305 << ": Avg: " << PrettySize(rss_histogram_.Mean() * KB) in DumpPerformanceInfo()306 << " Max: " << PrettySize(rss_histogram_.Max() * KB) in DumpPerformanceInfo()307 << " Min: " << PrettySize(rss_histogram_.Min() * KB) << "\n"; in DumpPerformanceInfo()309 rss_histogram_.DumpBins(os); in DumpPerformanceInfo()
157 Histogram<uint64_t> rss_histogram_; variable