Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/net/util/
DIPAddressUtil.java30 private final static int INADDR16SZ = 16; field in IPAddressUtil
143 byte[] dst = new byte[INADDR16SZ]; in textToNumericFormatV6()
185 if (j + INT16SZ > INADDR16SZ) in textToNumericFormatV6()
193 if (ch == '.' && ((j + INADDR4SZ) <= INADDR16SZ)) { in textToNumericFormatV6()
217 if (j + INT16SZ > INADDR16SZ) in textToNumericFormatV6()
226 if (j == INADDR16SZ) in textToNumericFormatV6()
229 dst[INADDR16SZ - i] = dst[colonp + n - i]; in textToNumericFormatV6()
232 j = INADDR16SZ; in textToNumericFormatV6()
234 if (j != INADDR16SZ) in textToNumericFormatV6()
284 if (addr.length < INADDR16SZ) { in isIPv4MappedAddress()
/libcore/ojluni/annotations/hiddenapi/sun/net/util/
DIPAddressUtil.java61 private static final int INADDR16SZ = 16; // 0x10 field in IPAddressUtil