Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/
DTimeStatsHelper.cpp33 static const std::array<int32_t, HISTOGRAM_SIZE> histogramConfig = variable
43 if (delta > histogramConfig[HISTOGRAM_SIZE - 1]) { in insert()
44 hist[histogramConfig[HISTOGRAM_SIZE - 1]] += delta / histogramConfig[HISTOGRAM_SIZE - 1]; in insert()
47 auto iter = std::lower_bound(histogramConfig.begin(), histogramConfig.end(), delta); in insert()
72 int32_t bucket = histogramConfig[i]; in toString()