Searched refs:ULLVal (Results 1 – 2 of 2) sorted by relevance
463 unsigned long long ULLVal; in getAsInteger() local467 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()468 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()470 Result = ULLVal; in getAsInteger()492 unsigned long long ULLVal; in consumeInteger() local493 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()494 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()496 Result = ULLVal; in consumeInteger()
458 unsigned long long ULLVal; in consumeSignedInteger() local462 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()464 (long long)ULLVal < 0) in consumeSignedInteger()466 Result = ULLVal; in consumeSignedInteger()472 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()476 (long long)-ULLVal > 0) in consumeSignedInteger()480 Result = -ULLVal; in consumeSignedInteger()