Searched refs:pseudoCodePoint (Results 1 – 1 of 1) sorted by relevance
125 int pseudoCodePoint = str[offset]; in toDigit() local127 if ('0' <= pseudoCodePoint && pseudoCodePoint <= '9') { in toDigit()128 return pseudoCodePoint - '0'; in toDigit()129 } else if ('a' <= pseudoCodePoint && pseudoCodePoint <= 'f') { in toDigit()130 return 10 + (pseudoCodePoint - 'a'); in toDigit()131 } else if ('A' <= pseudoCodePoint && pseudoCodePoint <= 'F') { in toDigit()132 return 10 + (pseudoCodePoint - 'A'); in toDigit()