Home
last modified time | relevance | path

Searched refs:ULLVal (Results 1 – 3 of 3) 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/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/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()