Searched refs:pseudoCodePoint (Results 1 – 1 of 1) sorted by relevance
86 int pseudoCodePoint = str[offset]; in toDigit() local88 if ('0' <= pseudoCodePoint && pseudoCodePoint <= '9') { in toDigit()89 return pseudoCodePoint - '0'; in toDigit()90 } else if ('a' <= pseudoCodePoint && pseudoCodePoint <= 'f') { in toDigit()91 return 10 + (pseudoCodePoint - 'a'); in toDigit()92 } else if ('A' <= pseudoCodePoint && pseudoCodePoint <= 'F') { in toDigit()93 return 10 + (pseudoCodePoint - 'A'); in toDigit()