Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DStringRef.cpp307 unsigned long long ULLVal; in getAsInteger() local
311 if (GetAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
313 (long long)ULLVal < 0) in getAsInteger()
315 Result = ULLVal; in getAsInteger()
320 if (GetAsUnsignedInteger(substr(1), Radix, ULLVal) || in getAsInteger()
324 (long long)-ULLVal > 0) in getAsInteger()
327 Result = -ULLVal; in getAsInteger()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringRef.h506 unsigned long long ULLVal; in getAsInteger() local
510 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
511 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()
513 Result = ULLVal; in getAsInteger()
540 unsigned long long ULLVal; in consumeInteger() local
541 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger()
542 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger()
544 Result = ULLVal; in consumeInteger()
/external/llvm/lib/Support/
DStringRef.cpp421 unsigned long long ULLVal; in getAsSignedInteger() local
425 if (getAsUnsignedInteger(Str, Radix, ULLVal) || in getAsSignedInteger()
427 (long long)ULLVal < 0) in getAsSignedInteger()
429 Result = ULLVal; in getAsSignedInteger()
434 if (getAsUnsignedInteger(Str.substr(1), Radix, ULLVal) || in getAsSignedInteger()
438 (long long)-ULLVal > 0) in getAsSignedInteger()
441 Result = -ULLVal; in getAsSignedInteger()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp475 unsigned long long ULLVal; in consumeSignedInteger() local
479 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()
481 (long long)ULLVal < 0) in consumeSignedInteger()
483 Result = ULLVal; in consumeSignedInteger()
489 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()
493 (long long)-ULLVal > 0) in consumeSignedInteger()
497 Result = -ULLVal; in consumeSignedInteger()
/external/llvm/include/llvm/ADT/
DStringRef.h378 unsigned long long ULLVal; in getAsInteger() local
382 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
383 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger()
385 Result = ULLVal; in getAsInteger()