Searched refs:ULLVal (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringRef.h | 506 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | StringRef.h | 509 unsigned long long ULLVal; in getAsInteger() local 513 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger() 514 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in getAsInteger() 516 Result = ULLVal; in getAsInteger() 543 unsigned long long ULLVal; in consumeInteger() local 544 if (consumeUnsignedInteger(*this, Radix, ULLVal) || in consumeInteger() 545 static_cast<unsigned long long>(static_cast<T>(ULLVal)) != ULLVal) in consumeInteger() 547 Result = ULLVal; in consumeInteger()
|
/external/llvm/lib/Support/ |
D | StringRef.cpp | 421 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/ |
D | StringRef.cpp | 475 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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | StringRef.cpp | 461 unsigned long long ULLVal; in consumeSignedInteger() local 465 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger() 467 (long long)ULLVal < 0) in consumeSignedInteger() 469 Result = ULLVal; in consumeSignedInteger() 475 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger() 479 (long long)-ULLVal > 0) in consumeSignedInteger() 483 Result = -ULLVal; in consumeSignedInteger()
|
/external/llvm/include/llvm/ADT/ |
D | StringRef.h | 378 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()
|