Searched refs:IsNeg (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DScaledNumber.h440 static int64_t joinSigned(uint64_t U, bool IsNeg) { argument
442 return IsNeg ? INT64_MIN : INT64_MAX;
443 return IsNeg ? -int64_t(U) : int64_t(U);
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2471 bool IsNeg = false; local
2474 IsNeg = true;
2496 if (IsNeg)

Completed in 405 milliseconds