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

/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DScaledNumber.h439 static int64_t joinSigned(uint64_t U, bool IsNeg) { argument
441 return IsNeg ? INT64_MIN : INT64_MAX;
442 return IsNeg ? -int64_t(U) : int64_t(U);
/freebsd-11.0-release/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2613 bool IsNeg = false; local
2616 IsNeg = true;
2638 if (IsNeg)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp769 Value *IsNeg = EmitSignBit(*this, Arg); local
775 Value *SignResult = Builder.CreateSelect(IsNeg, NegativeOne, One);

Completed in 69 milliseconds