HomeSort by relevance Sort by last modified time
    Searched refs:isNeg (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/ADT/
StringExtras.h 77 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/
SkCullPoints.cpp 38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/skia/src/utils/
SkCullPoints.cpp 38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 497 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/
APInt.cpp 824 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;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 308 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
623 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 1132 boolean isNeg = false;
1139 isNeg = true;
1144 if (isNeg)
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 308 /// isNeg, isFNeg, isNot - Check if the given Value is a
311 static bool isNeg(const Value *V);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 49 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
InstructionCombining.cpp 613 if (BinaryOperator::isNeg(V))
    [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp     [all...]
  /external/deqp/framework/common/
tcuCompressedTexture.cpp 379 const bool isNeg = (src & (1<<2)) != 0;
380 return (deInt8)((isNeg ? ~((1<<3)-1) : 0) | src);
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 811 milliseconds