Searched refs:toDigit (Results 1 – 3 of 3) sorted by relevance
152 result[resultOffset++] = (byte) toDigit(encoded, i); in decode()162 result[resultOffset++] = (byte) ((toDigit(encoded, i) << 4) | toDigit(encoded, i + 1)); in decode()168 private static int toDigit(char[] str, int offset) throws IllegalArgumentException { in toDigit() method in HexEncoding
1918 int firstDigit = toDigit(hexString.charAt(0)); in hexToByte()1919 int secondDigit = toDigit(hexString.charAt(1)); in hexToByte()1923 private int toDigit(char hexChar) { in toDigit() method in InboundSmsHandler
38794 HSPLlibcore/util/HexEncoding;->toDigit([CI)I