Searched refs:DigVal (Results 1 – 1 of 1) sorted by relevance
149 unsigned char DigVal = Str[i]; in convertStrToInt() local150 if (isDigit(DigVal)) in convertStrToInt()151 DigVal = DigVal - '0'; in convertStrToInt()153 DigVal = toUpper(DigVal); in convertStrToInt()154 if (isAlpha(DigVal)) in convertStrToInt()155 DigVal = DigVal - 'A' + 10; in convertStrToInt()160 if (DigVal >= Base) in convertStrToInt()167 Result = SaturatingMultiplyAdd(Result, Base, (uint64_t)DigVal, &VFlow); in convertStrToInt()