Lines Matching refs:allocated_histogram_
1196 allocated_histogram_ = NewArray<HistogramInfo>(LAST_TYPE + 1); in SetUp()
1200 allocated_histogram_[name].set_name(#name); \ in SetUp()
1231 if (allocated_histogram_) { in TearDown()
1232 DeleteArray(allocated_histogram_); in TearDown()
1233 allocated_histogram_ = NULL; in TearDown()
1853 allocated_histogram_[i].clear(); in ClearHistograms()
1907 if (allocated_histogram_[i].number() > 0) { in ReportStatistics()
1908 PrintF(" %-34s%10d (%10d bytes)\n", allocated_histogram_[i].name(), in ReportStatistics()
1909 allocated_histogram_[i].number(), in ReportStatistics()
1910 allocated_histogram_[i].bytes()); in ReportStatistics()
1919 DoReportStatistics(isolate, allocated_histogram_, "allocated"); in ReportStatistics()
1928 allocated_histogram_[type].increment_number(1); in RecordAllocation()
1929 allocated_histogram_[type].increment_bytes(obj->Size()); in RecordAllocation()