Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h486 unsigned long long ULLVal; in getAsInteger() local
490 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() local
516 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()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp459 unsigned long long ULLVal; in consumeSignedInteger() local
463 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()