Searched refs:DigVal (Results 1 – 1 of 1) sorted by relevance
204 unsigned char DigVal = Str[i]; in convertStrToInt() local205 if (isDigit(DigVal)) in convertStrToInt()206 DigVal = DigVal - '0'; in convertStrToInt()208 DigVal = toUpper(DigVal); in convertStrToInt()209 if (isAlpha(DigVal)) in convertStrToInt()210 DigVal = DigVal - 'A' + 10; in convertStrToInt()215 if (DigVal >= Base) in convertStrToInt()222 Result = SaturatingMultiplyAdd(Result, Base, (uint64_t)DigVal, &VFlow); in convertStrToInt()