Lines Matching refs:heap_histograms
1190 static HistogramInfo heap_histograms[LAST_TYPE+1]; variable
1196 #define DEF_TYPE_NAME(name) heap_histograms[name].set_name(#name); in ClearHistograms()
1200 #define CLEAR_HISTOGRAM(name) heap_histograms[name].clear(); in ClearHistograms()
1253 ASSERT(heap_histograms[type].name() != NULL); in CollectHistogramInfo()
1254 heap_histograms[type].increment_number(1); in CollectHistogramInfo()
1255 heap_histograms[type].increment_bytes(obj->Size()); in CollectHistogramInfo()
1268 if (heap_histograms[i].number() > 0) { in ReportHistogram()
1270 heap_histograms[i].name(), in ReportHistogram()
1271 heap_histograms[i].number(), in ReportHistogram()
1272 heap_histograms[i].bytes()); in ReportHistogram()
1281 string_number += heap_histograms[type].number(); \ in ReportHistogram()
1282 string_bytes += heap_histograms[type].bytes(); in ReportHistogram()