Searched refs:MULTIPLIER (Results 1 – 2 of 2) sorted by relevance
7 private static final int MULTIPLIER = 2; field in ExponentialBackOff16 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in ExponentialBackOff()24 mCurrentIntervalMillis *= MULTIPLIER; in nextBackoffMillis()29 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in reset()
44 private static final int MULTIPLIER = 2; field in ExponentialBackoffTest55 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()