Home
last modified time | relevance | path

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

/frameworks/base/services/tests/powerstatstests/src/com/android/server/powerstats/
DIntervalRandomNoiseGeneratorTest.java72 int bucketCount, int lowBound, int highBound) { in buildHistogram() argument
76 assertThat(sample).isAtLeast(lowBound); in buildHistogram()
78 buckets[(int) ((double) (sample - lowBound) / (highBound - lowBound) * bucketCount)]++; in buildHistogram()
/frameworks/base/services/core/java/com/android/server/am/
DPendingIntentController.java532 final int lowBound = mConstants.PENDINGINTENT_WARNING_THRESHOLD - RECENT_N + 1; in incrementUidStatLocked() local
534 if (newCount == lowBound) { in incrementUidStatLocked()
537 } else if (newCount > lowBound && newCount <= mConstants.PENDINGINTENT_WARNING_THRESHOLD) { in incrementUidStatLocked()