Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/net/util/
DIPAddressUtil.java46 int currByte = 0; in textToNumericFormatV4() local
81 if (newOctet || tmpValue < 0 || tmpValue > 0xff || currByte == 3) { in textToNumericFormatV4()
84 res[currByte++] = (byte) (tmpValue & 0xff); in textToNumericFormatV4()
97 if (newOctet || tmpValue < 0 || tmpValue >= (1L << ((4 - currByte) * 8))) { in textToNumericFormatV4()
100 switch (currByte) { in textToNumericFormatV4()