Searched refs:DigVal (Results 1 – 1 of 1) sorted by relevance
201 unsigned char DigVal = Str[i]; in convertStrToInt() local202 if (isDigit(DigVal)) in convertStrToInt()203 DigVal = DigVal - '0'; in convertStrToInt()205 DigVal = toUpper(DigVal); in convertStrToInt()206 if (isAlpha(DigVal)) in convertStrToInt()207 DigVal = DigVal - 'A' + 10; in convertStrToInt()212 if (DigVal >= Base) in convertStrToInt()219 Result = SaturatingMultiplyAdd(Result, Base, (uint64_t)DigVal, &VFlow); in convertStrToInt()