Searched refs:ULLVal (Results 1 – 2 of 2) sorted by relevance
486 unsigned long long ULLVal; in getAsInteger() local490 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()491 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()493 Result = ULLVal; in getAsInteger()515 unsigned long long ULLVal; in consumeInteger() local516 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()517 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()519 Result = ULLVal; in consumeInteger()
459 unsigned long long ULLVal; in consumeSignedInteger() local463 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()465 (long long)ULLVal < 0) in consumeSignedInteger()467 Result = ULLVal; in consumeSignedInteger()473 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()477 (long long)-ULLVal > 0) in consumeSignedInteger()481 Result = -ULLVal; in consumeSignedInteger()