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

  /external/llvm/include/llvm/ADT/
StringExtras.h 60 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
71 if (isNeg) *--BufPtr = '-'; // Add negative sign...
76 static inline std::string utostr(uint64_t X, bool isNeg = false) {
87 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /external/skia/src/utils/
SkCullPoints.cpp 22 return tmp0.isNeg() != 0;
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/skia/include/core/
Sk64.h 73 SkBool isNeg() const { return (uint32_t)fHi >> 31; }
  /external/llvm/lib/Support/
APInt.cpp 823 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;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 150 bool isNeg() const { return isNegative; }
643 if (TripCount->isNeg()) {
655 assert(!TripCount->isNeg() && "Constant trip count must be positive");
  /external/skia/src/core/
SkRegion_path.cpp 101 if (!count.is32() || count.isNeg()) {
107 if (!size.is32() || size.isNeg()) {
Sk64.cpp 286 SkASSERT(!this->isNeg());
SkBitmap.cpp 26 return !value.isNeg() && value.is32();
243 SkASSERT(!safeSize.isNeg());
432 if (size.isNeg() || !size.is32()) {
    [all...]
SkGeometry.cpp 157 if (RR.isNeg())
420 SkASSERT(!denom.isNeg());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 229 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
587 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 137 bool isNeg() const { return isNegative; }
490 if (TripCount->isNeg()) {
  /external/skia/tests/
Sk64Test.cpp 23 REPORTER_ASSERT(reporter, !a.isNeg() == !table.neg);
BitmapCopyTest.cpp 367 if (safeSize.isNeg()) {
  /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/lib/Transforms/InstCombine/
InstCombine.h 43 if (BinaryOperator::isNeg(V) ||
InstructionCombining.cpp 495 if (BinaryOperator::isNeg(V))
    [all...]
  /external/llvm/include/llvm/
InstrTypes.h 310 /// isNeg, isFNeg, isNot - Check if the given Value is a
313 static bool isNeg(const Value *V);
    [all...]
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 86 if (size.isNeg() || !size.is32()) {
SkImageDecoder_libpng.cpp 545 if (size.isNeg() || !size.is32()) {
    [all...]
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 484 if (size64.isNeg() || !size64.is32()) {
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 666 milliseconds