Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/location/
DExponentialBackOff.java7 private static final int MULTIPLIER = 2; field in ExponentialBackOff
16 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in ExponentialBackOff()
24 mCurrentIntervalMillis *= MULTIPLIER; in nextBackoffMillis()
29 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in reset()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DExponentialBackoffTest.java44 private static final int MULTIPLIER = 2; field in ExponentialBackoffTest
55 START_DELAY_MS, MAXIMUM_DELAY_MS, MULTIPLIER, mHandler, mRunnable); in setUp()
97 long minDelay = (long) (START_DELAY_MS * Math.pow(MULTIPLIER, i - 1)); in testDelayIncreasedExponentially()
98 long maxDelay = (long) (START_DELAY_MS * Math.pow(MULTIPLIER, i)); in testDelayIncreasedExponentially()