Home
last modified time | relevance | path

Searched refs:heap_histograms (Results 1 – 1 of 1) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dspaces.cc1190 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()
[all …]