Home
last modified time | relevance | path

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

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