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

/external/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...
/external/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))
/external/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...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp292 if (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I) &&
661 if ((Opcode == Instruction::Mul && BinaryOperator::isNeg(BO)) ||
933 if (!BinaryOperator::isNeg(U) && !BinaryOperator::isFNeg(U))
978 if (BinaryOperator::isNeg(Sub) || BinaryOperator::isFNeg(Sub))
1528 if (!BinaryOperator::isNeg(TheOp) && !BinaryOperator::isFNeg(TheOp) &&
1533 if (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp))
1544 (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp)))
2085 } else if (BinaryOperator::isNeg(I)) {
H A DStraightLineStrengthReduce.cpp630 if (BinaryOperator::isNeg(Bump)) {
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java1132 boolean isNeg = false;
1139 isNeg = true;
1144 if (isNeg)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h54 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
H A DInstructionCombining.cpp668 if (BinaryOperator::isNeg(V))
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp348 const bool isNeg = (src & (1<<2)) != 0; local
349 return (deInt8)((isNeg ? ~((1<<3)-1) : 0) | src);
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp1228 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1229 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp1311 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1312 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/llvm/include/llvm/IR/
H A DInstrTypes.h504 static bool isNeg(const Value *V);
/external/sqlite/dist/orig/
H A Dshell.c2037 int isNeg = 0; local
2039 isNeg = 1;
2063 return isNeg? -v : v;
/external/sqlite/dist/
H A Dshell.c2059 int isNeg = 0; local
2061 isNeg = 1;
2085 return isNeg? -v : v;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp1551 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1552 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/llvm/lib/IR/
H A DInstructions.cpp2102 bool BinaryOperator::isNeg(const Value *V) {
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10796 bool isNeg = false; local
10798 isNeg = true;
10809 if (isNeg)

Completed in 426 milliseconds