Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/sntp/
DTimestamp64.java176 public static int randomizeLowestBits(Random random, int value, int bitsToRandomize) { in randomizeLowestBits() argument
177 if (bitsToRandomize < 1 || bitsToRandomize >= Integer.SIZE) { in randomizeLowestBits()
179 throw new IllegalArgumentException(Integer.toString(bitsToRandomize)); in randomizeLowestBits()
182 int upperBitMask = 0xFFFF_FFFF << bitsToRandomize; in randomizeLowestBits()