Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringRef.h519 unsigned long long ULLVal; in getAsInteger() local
523 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
524 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()
526 Result = ULLVal; in getAsInteger()
553 unsigned long long ULLVal; in consumeInteger() local
554 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()
555 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()
557 Result = ULLVal; in consumeInteger()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringRef.cpp460 unsigned long long ULLVal; in consumeSignedInteger() local
464 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()
466 (long long)ULLVal < 0) in consumeSignedInteger()
468 Result = ULLVal; in consumeSignedInteger()
474 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()
478 (long long)-ULLVal > 0) in consumeSignedInteger()
482 Result = -ULLVal; in consumeSignedInteger()