Searched refs:ULLVal (Results 1 – 2 of 2) sorted by relevance
519 unsigned long long ULLVal; in getAsInteger() local523 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()524 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()526 Result = ULLVal; in getAsInteger()553 unsigned long long ULLVal; in consumeInteger() local554 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()555 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()557 Result = ULLVal; in consumeInteger()
460 unsigned long long ULLVal; in consumeSignedInteger() local464 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()466 (long long)ULLVal < 0) in consumeSignedInteger()468 Result = ULLVal; in consumeSignedInteger()474 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()478 (long long)-ULLVal > 0) in consumeSignedInteger()482 Result = -ULLVal; in consumeSignedInteger()