Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h474 unsigned long long ULLVal; in getAsInteger() local
478 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
479 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()
481 Result = ULLVal; in getAsInteger()
503 unsigned long long ULLVal; in consumeInteger() local
504 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()
505 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()
507 Result = ULLVal; in consumeInteger()
/freebsd-14.2/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()