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

/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h71 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
82 if (isNeg) *--BufPtr = '-'; // Add negative sign...
87 static inline std::string utostr(uint64_t X, bool isNeg = false) {
98 if (isNeg) *--BufPtr = '-'; // Add negative sign...
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DAPInt.cpp823 bool isNeg = T.I >> 63;
837 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
848 return isNeg ? -Tmp : Tmp;
871 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
874 APInt Tmp(isNeg ? -(*this) : (*this));
886 if (!isSigned || !isNeg)
909 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1567 bool isNeg = false;
1585 isNeg |= borrow;
1597 if (isNeg) {
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp156 bool isNeg() const { return isNegative; } function in class:__anon2461::CountValue
693 if (TripCount->isNeg()) {
705 if (TripCount->isNeg())
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp315 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
630 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
875 if (!BinaryOperator::isNeg(U)) continue;
912 if (BinaryOperator::isNeg(Sub))
1424 if (!BinaryOperator::isNeg(TheOp))
1874 } else if (BinaryOperator::isNeg(I)) {
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h44 if (BinaryOperator::isNeg(V) ||
H A DInstructionCombining.cpp516 if (BinaryOperator::isNeg(V))
/freebsd-10.0-release/contrib/sqlite3/
H A Dshell.c1560 int isNeg = 0; local
1562 isNeg = 1;
1577 return isNeg? -v : v;
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h308 /// isNeg, isFNeg, isNot - Check if the given Value is a
311 static bool isNeg(const Value *V);
/freebsd-10.0-release/sys/boot/ficl/
H A Dwords.c208 char isNeg = FALSE; local
223 isNeg = TRUE;
228 isNeg = FALSE;
263 if (isNeg)
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DInstructions.cpp1926 bool BinaryOperator::isNeg(const Value *V) { function in class:BinaryOperator
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9734 bool isNeg = false; local
9736 isNeg = true;
9747 if (isNeg)

Completed in 286 milliseconds