Searched refs:ULLVal (Results 1 – 2 of 2) sorted by relevance
526 unsigned long long ULLVal; in getAsInteger() local530 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()531 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()533 Result = ULLVal; in getAsInteger()560 unsigned long long ULLVal; in consumeInteger() local561 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()562 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()564 Result = ULLVal; in consumeInteger()
464 unsigned long long ULLVal; in consumeSignedInteger() local468 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()470 (long long)ULLVal < 0) in consumeSignedInteger()472 Result = ULLVal; in consumeSignedInteger()478 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()482 (long long)-ULLVal > 0) in consumeSignedInteger()486 Result = -ULLVal; in consumeSignedInteger()