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/chromium_org/third_party/skia/src/utils/
H A DSkCullPoints.cpp38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY); local
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
/external/skia/src/utils/
H A DSkCullPoints.cpp38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY); local
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
/external/llvm/lib/Target/AArch64/
H A DAArch64ExpandPseudoInsts.cpp497 bool isNeg = false;
502 isNeg = true;
509 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi);
511 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi);
533 if (isNeg)
547 if (Imm16 == (isNeg ? Mask : 0))
/external/llvm/lib/Support/
H A DAPInt.cpp824 bool isNeg = T.I >> 63;
838 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
849 return isNeg ? -Tmp : Tmp;
872 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
875 APInt Tmp(isNeg ? -(*this) : (*this));
887 if (!isSigned || !isNeg)
910 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1568 bool isNeg = false;
1586 isNeg |= borrow;
1598 if (isNeg) {
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp308 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
623 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
867 if (!BinaryOperator::isNeg(U)) continue;
904 if (BinaryOperator::isNeg(Sub))
1415 if (!BinaryOperator::isNeg(TheOp) && !BinaryOperator::isNot(TheOp))
1419 if (BinaryOperator::isNeg(TheOp))
1429 if (Ops.size() == 2 && BinaryOperator::isNeg(TheOp))
1868 } else if (BinaryOperator::isNeg(I)) {
/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 DInstCombine.h49 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
H A DInstructionCombining.cpp613 if (BinaryOperator::isNeg(V))
/external/sqlite/dist/orig/
H A Dshell.c1813 int isNeg = 0; local
1815 isNeg = 1;
1839 return isNeg? -v : v;
/external/sqlite/dist/
H A Dshell.c1833 int isNeg = 0; local
1835 isNeg = 1;
1859 return isNeg? -v : v;
/external/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);
/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.cpp1264 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1265 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp379 const bool isNeg = (src & (1<<2)) != 0; local
380 return (deInt8)((isNeg ? ~((1<<3)-1) : 0) | src);
/external/llvm/lib/IR/
H A DInstructions.cpp1938 bool BinaryOperator::isNeg(const Value *V) { function in class:BinaryOperator
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9828 bool isNeg = false; local
9830 isNeg = true;
9841 if (isNeg)

Completed in 2305 milliseconds