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
116 int value = (toDigit(streamId, idx) << 4) | toDigit(streamId, idx + 1); in fromStreamId()172 private static int toDigit(String streamId, int index) { in toDigit() method in Fingerprint
212 private int toDigit(char hexChar) { in toDigit() method in HalRefDoParser227 int firstDigit = toDigit(ch1); in hexToByte()228 int secondDigit = toDigit(ch2); in hexToByte()