Home | History | Annotate | Download | only in net

Lines Matching full:hex_digits

1756     private static final char[] HEX_DIGITS = "0123456789ABCDEF".toCharArray();
1850 encoded.append(HEX_DIGITS[(bytes[i] & 0xf0) >> 4]);
1851 encoded.append(HEX_DIGITS[bytes[i] & 0xf]);