Home
last modified time | relevance | path

Searched refs:DigVal (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp149 unsigned char DigVal = Str[i]; in convertStrToInt() local
150 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()