Searched refs:pseudoCodePoint (Results 1 – 1 of 1) sorted by relevance
171 int pseudoCodePoint = str[offset]; in toDigit() local173 if ('0' <= pseudoCodePoint && pseudoCodePoint <= '9') { in toDigit()174 return pseudoCodePoint - '0'; in toDigit()175 } else if ('a' <= pseudoCodePoint && pseudoCodePoint <= 'f') { in toDigit()176 return 10 + (pseudoCodePoint - 'a'); in toDigit()177 } else if ('A' <= pseudoCodePoint && pseudoCodePoint <= 'F') { in toDigit()178 return 10 + (pseudoCodePoint - 'A'); in toDigit()