Searched refs:chCurrent (Results 1 – 1 of 1) sorted by relevance
266 CHAR chCurrent; in RtlCharToInteger() local318 chCurrent = *str; in RtlCharToInteger()320 if (chCurrent >= '0' && chCurrent <= '9') in RtlCharToInteger()322 digit = chCurrent - '0'; in RtlCharToInteger()324 else if (chCurrent >= 'A' && chCurrent <= 'Z') in RtlCharToInteger()326 digit = chCurrent - 'A' + 10; in RtlCharToInteger()328 else if (chCurrent >= 'a' && chCurrent <= 'z') in RtlCharToInteger()330 digit = chCurrent - 'a' + 10; in RtlCharToInteger()