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 65 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
76 if (isNeg) *--BufPtr = '-'; // Add negative sign...
81 static inline std::string utostr(uint64_t X, bool isNeg = false) {
92 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /external/skia/src/utils/
SkCullPoints.cpp 30 return tmp0.isNeg() != 0;
54 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
56 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 320 unsigned isNeg = (int64_t(Value - 4) < 0) ? 1 : 0;
325 Binary |= isNeg << 10; // Sign bit.
338 unsigned isNeg = (int64_t(Value-4) < 0) ? 1 : 0;
343 Binary |= isNeg << 10; // Sign bit.
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 192 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
284 if (!LHSBO && LHS->hasOneUse() && BinaryOperator::isNeg(LHS)) {
288 if (!RHSBO && RHS->hasOneUse() && BinaryOperator::isNeg(RHS)) {
435 if (!BinaryOperator::isNeg(U)) continue;
472 if (BinaryOperator::isNeg(Sub))
758 if (!BinaryOperator::isNeg(TheOp))
    [all...]
  /external/skia/include/core/
Sk64.h 81 SkBool isNeg() const { return (uint32_t)fHi >> 31; }
  /external/llvm/lib/Support/
APInt.cpp 918 bool isNeg = T.I >> 63;
932 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
943 return isNeg ? -Tmp : Tmp;
966 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
969 APInt Tmp(isNeg ? -(*this) : (*this));
981 if (!isSigned || !isNeg)
1004 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
    [all...]
  /external/skia/src/core/
SkRegion_path.cpp 109 if (!count.is32() || count.isNeg()) {
115 if (!size.is32() || size.isNeg()) {
Sk64.cpp 293 SkASSERT(!this->isNeg());
SkBitmap.cpp 33 return !value.isNeg() && value.is32();
250 SkASSERT(!safeSize.isNeg());
430 if (size.isNeg() || !size.is32()) {
    [all...]
SkGeometry.cpp 165 if (RR.isNeg())
428 SkASSERT(!denom.isNeg());
    [all...]
  /external/skia/tests/
Sk64Test.cpp 16 REPORTER_ASSERT(reporter, !a.isNeg() == !table.neg);
BitmapCopyTest.cpp 351 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 42 if (BinaryOperator::isNeg(V) ||
InstructionCombining.cpp 486 if (BinaryOperator::isNeg(V))
    [all...]
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 77 if (size.isNeg() || !size.is32()) {
SkImageDecoder_libpng.cpp 553 if (size.isNeg() || !size.is32()) {
    [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...]
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 484 if (size64.isNeg() || !size64.is32()) {
  /external/llvm/lib/Target/CBackend/
CBackend.cpp     [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 3751 milliseconds