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