Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp201 unsigned char DigVal = Str[i]; in convertStrToInt() local
202 if (isDigit(DigVal)) in convertStrToInt()
203 DigVal = DigVal - '0'; in convertStrToInt()
205 DigVal = toUpper(DigVal); in convertStrToInt()
206 if (isAlpha(DigVal)) in convertStrToInt()
207 DigVal = DigVal - 'A' + 10; in convertStrToInt()
212 if (DigVal >= Base) in convertStrToInt()
219 Result = SaturatingMultiplyAdd(Result, Base, (uint64_t)DigVal, &VFlow); in convertStrToInt()