Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp151 unsigned char DigVal = Str[i]; in convertStrToInt() local
152 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()