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.h463 unsigned long long ULLVal; in getAsInteger() local
467 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() local
493 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()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp458 unsigned long long ULLVal; in consumeSignedInteger() local
462 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()