Searched defs:negate (Results 1 - 25 of 56) sorted by relevance

123

/external/proguard/src/proguard/util/
H A DListMatcher.java34 private final boolean[] negate; field in class:ListMatcher
43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) argument
46 this.negate = negate;
60 return negate == null ||
61 !negate[index];
65 return negate != null &&
66 negate[negate.length - 1];
/external/proguard/src/proguard/evaluation/value/
H A DNegatedDoubleValue.java44 public DoubleValue negate() method in class:NegatedDoubleValue
H A DNegatedFloatValue.java44 public FloatValue negate() method in class:NegatedFloatValue
H A DNegatedIntegerValue.java44 public IntegerValue negate() method in class:NegatedIntegerValue
H A DNegatedLongValue.java44 public LongValue negate() method in class:NegatedLongValue
H A DDoubleValue.java46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DFloatValue.java46 public abstract FloatValue negate(); method in class:FloatValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DParticularDoubleValue.java52 public DoubleValue negate() method in class:ParticularDoubleValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DParticularFloatValue.java52 public FloatValue negate() method in class:ParticularFloatValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DSpecificDoubleValue.java32 public DoubleValue negate() method in class:SpecificDoubleValue
H A DSpecificFloatValue.java32 public FloatValue negate() method in class:SpecificFloatValue
H A DUnknownDoubleValue.java32 public DoubleValue negate() method in class:UnknownDoubleValue
H A DUnknownFloatValue.java32 public FloatValue negate() method in class:UnknownFloatValue
H A DIntegerValue.java46 public abstract IntegerValue negate(); method in class:IntegerValue
H A DLongValue.java46 public abstract LongValue negate(); method in class:LongValue
217 return compare(other).negate();
373 return compare(other).negate();
529 return compare(other).negate();
H A DParticularIntegerValue.java52 public IntegerValue negate() method in class:ParticularIntegerValue
H A DParticularLongValue.java52 public LongValue negate() method in class:ParticularLongValue
H A DSpecificIntegerValue.java32 public IntegerValue negate() method in class:SpecificIntegerValue
H A DSpecificLongValue.java32 public LongValue negate() method in class:SpecificLongValue
H A DUnknownIntegerValue.java32 public IntegerValue negate() method in class:UnknownIntegerValue
H A DUnknownLongValue.java32 public LongValue negate() method in class:UnknownLongValue
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java115 public abstract ECPoint negate(); method in class:ECPoint
309 return add(b.negate());
312 public ECPoint negate() method in class:ECPoint.Fp
314 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.withCompression);
529 return addSimple((ECPoint.F2m)b.negate());
565 public ECPoint negate() method in class:ECPoint.F2m
H A DSimpleBigDecimal.java99 public SimpleBigDecimal negate() method in class:SimpleBigDecimal
101 return new SimpleBigDecimal(bigInt.negate(), scale);
106 return add(b.negate());
H A DECFieldElement.java17 public abstract ECFieldElement negate(); method in class:ECFieldElement
90 public ECFieldElement negate() method in class:ECFieldElement.Fp
92 return new Fp(q, x.negate().mod(q));
600 // public ECFieldElement negate()
1025 public ECFieldElement negate() method in class:ECFieldElement.F2m
/external/eigen/test/
H A Dpacketmath.cpp17 template<typename T> T negate(const T& x) { return -x; } function in namespace:Eigen::internal
158 CHECK_CWISE1(internal::negate, internal::pnegate);

Completed in 298 milliseconds

123