Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/utils/
DLatencyHistogram.cpp36 int32_t binIndex = durationMs / mBinSizeMs; in add() local
38 if (binIndex < 0) { in add()
39 binIndex = 0; in add()
40 } else if (binIndex >= mBinCount) { in add()
41 binIndex = mBinCount-1; in add()
44 mBins[binIndex]++; in add()