Searched defs:bin (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dhistogram.cpp34 int bin = clamp(0, static_cast<int>(static_cast<float>(i * numBins) / 255.0f), numBins - 1); local
35 ++pHist[bin];
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1961 int bin = brightness / (256/NUM_SCREEN_BRIGHTNESS_BINS);
1962 if (bin < 0) bin = 0;
1963 else if (bin >= NUM_SCREEN_BRIGHTNESS_BINS) bin = NUM_SCREEN_BRIGHTNESS_BINS-1;
1964 if (mScreenBrightnessBin != bin) {
1966 | (bin << HistoryItem.STATE_BRIGHTNESS_SHIFT);
1967 if (DEBUG_HISTORY) Slog.v(TAG, "Screen brightness " + bin + " to: "
1974 mScreenBrightnessTimer[bin].startRunningLocked(this);
1976 mScreenBrightnessBin = bin;
2034 updateAllPhoneStateLocked(int state, int simState, int bin) argument
[all...]

Completed in 77 milliseconds