Searched refs:DigVal (Results 1 – 1 of 1) sorted by relevance
192 unsigned char DigVal = Str[i]; in convertStrToInt() local193 if (isDigit(DigVal)) in convertStrToInt()194 DigVal = DigVal - '0'; in convertStrToInt()196 DigVal = toUpper(DigVal); in convertStrToInt()197 if (isAlpha(DigVal)) in convertStrToInt()198 DigVal = DigVal - 'A' + 10; in convertStrToInt()203 if (DigVal >= Base) in convertStrToInt()210 Result = SaturatingMultiplyAdd(Result, Base, (uint64_t)DigVal, &VFlow); in convertStrToInt()