Searched refs:isNeg (Results 1 - 12 of 12) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h77 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
88 if (isNeg) *--BufPtr = '-'; // Add negative sign...
93 static inline std::string utostr(uint64_t X, bool isNeg = false) {
104 if (isNeg) *--BufPtr = '-'; // Add negative sign...
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ExpandPseudoInsts.cpp509 bool isNeg = false;
514 isNeg = true;
521 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi);
523 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi);
545 if (isNeg)
559 if (Imm16 == (isNeg ? Mask : 0))
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DAPInt.cpp836 bool isNeg = T.I >> 63;
850 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
861 return isNeg ? -Tmp : Tmp;
884 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
887 APInt Tmp(isNeg ? -(*this) : (*this));
899 if (!isSigned || !isNeg)
922 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1598 bool isNeg = u[j+n] < borrow;
1608 if (isNeg) {
2092 bool isNeg
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp294 if (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I) &&
663 if ((Opcode == Instruction::Mul && BinaryOperator::isNeg(BO)) ||
935 if (!BinaryOperator::isNeg(U) && !BinaryOperator::isFNeg(U))
980 if (BinaryOperator::isNeg(Sub) || BinaryOperator::isFNeg(Sub))
1530 if (!BinaryOperator::isNeg(TheOp) && !BinaryOperator::isFNeg(TheOp) &&
1535 if (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp))
1546 (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp)))
2103 } else if (BinaryOperator::isNeg(I)) {
H A DStraightLineStrengthReduce.cpp630 if (BinaryOperator::isNeg(Bump)) {
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h54 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
H A DInstructionCombining.cpp668 if (BinaryOperator::isNeg(V))
/freebsd-11.0-release/sys/boot/ficl/
H A Dwords.c208 char isNeg = FALSE; local
223 isNeg = TRUE;
228 isNeg = FALSE;
263 if (isNeg)
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h504 static bool isNeg(const Value *V);
/freebsd-11.0-release/contrib/sqlite3/
H A Dshell.c2198 int isNeg = 0; local
2200 isNeg = 1;
2224 return isNeg? -v : v;
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DInstructions.cpp2099 bool BinaryOperator::isNeg(const Value *V) {
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10878 bool isNeg = false; local
10880 isNeg = true;
10891 if (isNeg)

Completed in 327 milliseconds