Home
last modified time | relevance | path

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

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