Home
last modified time | relevance | path

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

/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DInetAddressUtil.java50 int bestRunLength = -1; in compressLongestRunOfZeroes() local
59 if (runLength > bestRunLength) { in compressLongestRunOfZeroes()
61 bestRunLength = runLength; in compressLongestRunOfZeroes()
66 if (bestRunLength >= 2) { in compressLongestRunOfZeroes()
67 Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1); in compressLongestRunOfZeroes()
/external/guava/guava/src/com/google/common/net/
DInetAddresses.java382 int bestRunLength = -1; in compressLongestRunOfZeroes() local
391 if (runLength > bestRunLength) { in compressLongestRunOfZeroes()
393 bestRunLength = runLength; in compressLongestRunOfZeroes()
398 if (bestRunLength >= 2) { in compressLongestRunOfZeroes()
399 Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1); in compressLongestRunOfZeroes()