Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DStringRef.h526 unsigned long long ULLVal; in getAsInteger() local
530 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() local
561 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()
/llvm-project-15.0.7/llvm/lib/Support/
H A DStringRef.cpp464 unsigned long long ULLVal; in consumeSignedInteger() local
468 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()