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

12

/external/llvm/include/llvm/ADT/
H A DStringExtras.h71 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
82 if (isNeg) *--BufPtr = '-'; // Add negative sign...
87 static inline std::string utostr(uint64_t X, bool isNeg = false) {
98 if (isNeg) *--BufPtr = '-'; // Add negative sign...
/external/skia/legacy/src/utils/
H A DSkCullPoints.cpp22 return tmp0.isNeg() != 0;
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY); local
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
/external/skia/src/utils/
H A DSkCullPoints.cpp22 return tmp0.isNeg() != 0;
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY); local
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
/external/skia/include/core/
H A DSk64.h73 SkBool isNeg() const { return (uint32_t)fHi >> 31; } function in struct:Sk64
/external/skia/legacy/include/core/
H A DSk64.h73 SkBool isNeg() const { return (uint32_t)fHi >> 31; } function in struct:Sk64
/external/llvm/lib/Support/
H A DAPInt.cpp823 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;
1567 bool isNeg = false;
1585 isNeg |= borrow;
1597 if (isNeg) {
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp156 bool isNeg() const { return isNegative; } function in class:__anon9758::CountValue
693 if (TripCount->isNeg()) {
705 if (TripCount->isNeg())
/external/skia/legacy/src/core/
H A DSkRegion_path.cpp101 if (!count.is32() || count.isNeg()) {
107 if (!size.is32() || size.isNeg()) {
H A DSk64.cpp286 SkASSERT(!this->isNeg());
H A DSkBitmap.cpp26 return !value.isNeg() && value.is32();
243 SkASSERT(!safeSize.isNeg());
432 if (size.isNeg() || !size.is32()) {
H A DSkGeometry.cpp157 if (RR.isNeg())
420 SkASSERT(!denom.isNeg());
/external/skia/src/core/
H A DSkRegion_path.cpp114 if (!count.is32() || count.isNeg()) {
120 if (!size.is32() || size.isNeg()) {
H A DSk64.cpp284 SkASSERT(!this->isNeg());
H A DSkBitmap.cpp28 return !value.isNeg() && value.is32();
244 SkASSERT(!safeSize.isNeg());
371 SkASSERT(!size.isNeg() && size.is32());
439 if (size.isNeg() || !size.is32()) {
H A DSkGeometry.cpp157 if (RR.isNeg())
420 SkASSERT(!denom.isNeg());
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp229 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
544 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
789 if (!BinaryOperator::isNeg(U)) continue;
826 if (BinaryOperator::isNeg(Sub))
1094 if (!BinaryOperator::isNeg(TheOp))
1540 } else if (BinaryOperator::isNeg(I)) {
/external/skia/tests/
H A DSk64Test.cpp23 REPORTER_ASSERT(reporter, !a.isNeg() == !table.neg);
H A DBitmapCopyTest.cpp377 if (safeSize.isNeg()) {
/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.h44 if (BinaryOperator::isNeg(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/skia/legacy/src/images/
H A DSkImageDecoder_libwebp.cpp86 if (size.isNeg() || !size.is32()) {
H A DSkImageDecoder_libpng.cpp545 if (size.isNeg() || !size.is32()) {
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp86 if (size.isNeg() || !size.is32()) {
H A DSkImageDecoder_libpng.cpp551 if (size.isNeg() || !size.is32()) {

Completed in 541 milliseconds

12