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

123456

/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();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Point.java164 SecP192K1Field.negate(G, G);
289 public ECPoint negate() method in class:SecP192K1Point
296 return new SecP192K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP192R1Point.java163 SecP192R1Field.negate(G, G);
301 public ECPoint negate() method in class:SecP192R1Point
308 return new SecP192R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP224K1Point.java164 SecP224K1Field.negate(G, G);
289 public ECPoint negate() method in class:SecP224K1Point
296 return new SecP224K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP224R1Point.java162 SecP224R1Field.negate(G, G);
299 public ECPoint negate() method in class:SecP224R1Point
306 return new SecP224R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP256K1Point.java164 SecP256K1Field.negate(G, G);
289 public ECPoint negate() method in class:SecP256K1Point
296 return new SecP256K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP256R1Point.java162 SecP256R1Field.negate(G, G);
299 public ECPoint negate() method in class:SecP256R1Point
306 return new SecP256R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP384R1Point.java162 SecP384R1Field.negate(G, G);
300 public ECPoint negate() method in class:SecP384R1Point
307 return new SecP384R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP192K1FieldElement.java103 public ECFieldElement negate() method in class:SecP192K1FieldElement
106 SecP192K1Field.negate(x, z);
H A DSecP192R1FieldElement.java103 public ECFieldElement negate() method in class:SecP192R1FieldElement
106 SecP192R1Field.negate(x, z);
H A DSecP256K1FieldElement.java103 public ECFieldElement negate() method in class:SecP256K1FieldElement
106 SecP256K1Field.negate(x, z);
H A DSecP256R1FieldElement.java103 public ECFieldElement negate() method in class:SecP256R1FieldElement
106 SecP256R1Field.negate(x, z);
H A DSecP384R1FieldElement.java103 public ECFieldElement negate() method in class:SecP384R1FieldElement
106 SecP384R1Field.negate(x, z);
H A DSecP521R1FieldElement.java103 public ECFieldElement negate() method in class:SecP521R1FieldElement
106 SecP521R1Field.negate(x, z);
H A DSecP521R1Point.java324 public ECPoint negate() method in class:SecP521R1Point
331 return new SecP521R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPoint.java34 public final void negate() { method in class:ShadowPoint
H A DShadowPointF.java36 public final void negate() { method in class:ShadowPointF
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
H A DPolynomialFunction.java195 public PolynomialFunction negate() { method in class:PolynomialFunction
/external/deqp/framework/common/
H A DtcuInterval.cpp113 static double negate (double x) function in namespace:tcu
120 return applyMonotone(negate, x);

Completed in 298 milliseconds

123456