HomeSort by relevance Sort by last modified time
    Searched refs:subtract (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FieldElement.java 36 * @param a element to subtract
39 T subtract(T a); method in interface:FieldElement
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LookaheadSet.java 68 public LookaheadSet subtract(LookaheadSet other) { method in class:LookaheadSet
69 return new LookaheadSet(this.tokenTypeSet.subtract(other.tokenTypeSet));
87 tokenTypeSet = (IntervalSet)tokenTypeSet.subtract(IntervalSet.of(a));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP521R1Point.java 133 SecP521R1Field.subtract(U1, U2, H);
136 SecP521R1Field.subtract(S1, S2, R);
165 SecP521R1Field.subtract(X3.x, V, X3.x);
166 SecP521R1Field.subtract(X3.x, V, X3.x);
169 SecP521R1Field.subtract(V, X3.x, Y3.x);
171 SecP521R1Field.subtract(t2, t1, Y3.x);
223 SecP521R1Field.subtract(X1.x, Z1Squared, t1);
241 SecP521R1Field.subtract(X3.x, S, X3.x);
242 SecP521R1Field.subtract(X3.x, S, X3.x);
245 SecP521R1Field.subtract(S, X3.x, Y3.x)
    [all...]
SecP192R1Point.java 136 SecP192R1Field.subtract(U1, U2, H);
139 SecP192R1Field.subtract(S1, S2, R);
171 SecP192R1Field.subtract(X3.x, G, X3.x);
174 SecP192R1Field.subtract(V, X3.x, Y3.x);
230 SecP192R1Field.subtract(X1.x, Z1Squared, t1);
248 SecP192R1Field.subtract(X3.x, S, X3.x);
249 SecP192R1Field.subtract(X3.x, S, X3.x);
252 SecP192R1Field.subtract(S, X3.x, Y3.x);
254 SecP192R1Field.subtract(Y3.x, t1, Y3.x);
SecP224R1Point.java 135 SecP224R1Field.subtract(U1, U2, H);
138 SecP224R1Field.subtract(S1, S2, R);
170 SecP224R1Field.subtract(X3.x, G, X3.x);
173 SecP224R1Field.subtract(V, X3.x, Y3.x);
228 SecP224R1Field.subtract(X1.x, Z1Squared, t1);
246 SecP224R1Field.subtract(X3.x, S, X3.x);
247 SecP224R1Field.subtract(X3.x, S, X3.x);
250 SecP224R1Field.subtract(S, X3.x, Y3.x);
252 SecP224R1Field.subtract(Y3.x, t1, Y3.x);
SecP256R1Point.java 135 SecP256R1Field.subtract(U1, U2, H);
138 SecP256R1Field.subtract(S1, S2, R);
170 SecP256R1Field.subtract(X3.x, G, X3.x);
173 SecP256R1Field.subtract(V, X3.x, Y3.x);
228 SecP256R1Field.subtract(X1.x, Z1Squared, t1);
246 SecP256R1Field.subtract(X3.x, S, X3.x);
247 SecP256R1Field.subtract(X3.x, S, X3.x);
250 SecP256R1Field.subtract(S, X3.x, Y3.x);
252 SecP256R1Field.subtract(Y3.x, t1, Y3.x);
SecP384R1Point.java 135 SecP384R1Field.subtract(U1, U2, H);
138 SecP384R1Field.subtract(S1, S2, R);
170 SecP384R1Field.subtract(X3.x, G, X3.x);
173 SecP384R1Field.subtract(V, X3.x, Y3.x);
229 SecP384R1Field.subtract(X1.x, Z1Squared, t1);
247 SecP384R1Field.subtract(X3.x, S, X3.x);
248 SecP384R1Field.subtract(X3.x, S, X3.x);
251 SecP384R1Field.subtract(S, X3.x, Y3.x);
253 SecP384R1Field.subtract(Y3.x, t1, Y3.x);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerSubtractTest.java 28 * Method: subtract
32 * Subtract two positive numbers of the same length.
43 BigInteger result = aNumber.subtract(bNumber);
53 * Subtract two positive numbers of the same length.
64 BigInteger result = aNumber.subtract(bNumber);
74 * Subtract two numbers of the same length and different signs.
86 BigInteger result = aNumber.subtract(bNumber);
96 * Subtract two numbers of the same length and different signs.
108 BigInteger result = aNumber.subtract(bNumber);
118 * Subtract two negative numbers of the same length
    [all...]
  /external/proguard/src/proguard/evaluation/value/
SpecificDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
121 return new CompositeDoubleValue(this, CompositeDoubleValue.SUBTRACT, other);
126 return new CompositeDoubleValue(other, CompositeDoubleValue.SUBTRACT, this);
SpecificFloatValue.java 65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
121 return new CompositeFloatValue(this, CompositeFloatValue.SUBTRACT, other);
126 return new CompositeFloatValue(other, CompositeFloatValue.SUBTRACT, this);
DoubleValue.java 81 public abstract DoubleValue subtract(DoubleValue other); method in class:DoubleValue
155 public DoubleValue subtract(SpecificDoubleValue other) method in class:DoubleValue
157 return subtract((DoubleValue)other);
258 public DoubleValue subtract(ParticularDoubleValue other) method in class:DoubleValue
260 return subtract((SpecificDoubleValue)other);
FloatValue.java 81 public abstract FloatValue subtract(FloatValue other); method in class:FloatValue
155 public FloatValue subtract(SpecificFloatValue other) method in class:FloatValue
157 return subtract((FloatValue)other);
258 public FloatValue subtract(ParticularFloatValue other) method in class:FloatValue
260 return subtract((SpecificFloatValue)other);
ParticularDoubleValue.java 87 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 87 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
UnknownDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 61 IntSet subtract(IntSet a); method in interface:IntSet
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 61 BigInteger diff = q.subtract(p).abs();
104 pSub1 = p.subtract(ONE);
105 qSub1 = q.subtract(ONE);
167 if (!e.gcd(p.subtract(ONE)).equals(ONE))
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 322 max_arg_prec[0] = high[0].subtract(low[0]).msd() - 4;
323 deriv_msd[0] = f_high[0].subtract(f_low[0])
324 .divide(high[0].subtract(low[0])).msd();
333 BigInteger difference = x.subtract(y);
380 .subtract(big1);
391 if (f_h.compareTo(arg_appr.subtract(big1)) < 0
410 l = rough_appr.subtract(big1)
431 BigInteger difference = h.subtract(l);
445 BigInteger f_difference = f_h.subtract(f_l);
462 BigInteger arg_difference = arg_appr.subtract(f_l)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 489 public abstract ECPoint subtract(ECPoint b); method in class:ECPoint
587 public ECPoint subtract(ECPoint b) method in class:ECPoint.AbstractFp
688 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
703 ECFieldElement X3 = gamma.square().subtract(X1).subtract(X2);
704 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1);
719 ECFieldElement u = u1.subtract(u2);
722 ECFieldElement v = v1.subtract(v2)
    [all...]
SimpleBigDecimal.java 98 public SimpleBigDecimal subtract(SimpleBigDecimal b) method in class:SimpleBigDecimal
103 public SimpleBigDecimal subtract(BigInteger b) method in class:SimpleBigDecimal
105 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
193 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
196 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
Tnaf.java 101 norm = s1.subtract(s2).add(s3);
143 norm = s1.subtract(s2).add(s3);
184 SimpleBigDecimal eta0 = lambda0.subtract(f0);
185 SimpleBigDecimal eta1 = lambda1.subtract(f1);
196 eta = eta.subtract(eta1);
207 check1 = eta0.subtract(threeEta1);
214 check2 = eta0.subtract(fourEta1);
344 u[i] = (byte) ECConstants.TWO.subtract((r0.subtract(r1.shiftLeft(1))).mod(ECConstants.FOUR)).intValue();
372 r0 = r1.subtract(s)
    [all...]
ECFieldElement.java 19 public abstract ECFieldElement subtract(ECFieldElement b); method in class:ECFieldElement
44 return multiply(b).subtract(x.multiply(y));
54 return square().subtract(x.multiply(y));
89 return ONE.shiftLeft(bitLength).subtract(p);
155 public ECFieldElement subtract(ECFieldElement b) method in class:ECFieldElement.Fp
170 return new Fp(q, r, modReduce(ab.subtract(xy)));
188 return x.signum() == 0 ? this : new Fp(q, r, q.subtract(x));
201 return new Fp(q, r, modReduce(aa.subtract(xy)));
274 BigInteger k = legendreExponent.add(ECConstants.ONE), qMinusOne = q.subtract(ECConstants.ONE);
286 || !modReduce(P.multiply(P).subtract(fourX)).modPow(legendreExponent, q).equals(qMinusOne))
687 public ECFieldElement subtract(final ECFieldElement b) method in class:ECFieldElement.Fp.F2m
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
OrbitalMagnetComponent.java 72 mDelta.subtract(mCenter);
89 targetVelocity.subtract(mVelocity);
99 mDelta.subtract(mRim);
  /external/jetty/src/java/org/eclipse/jetty/util/statistic/
CounterStatistic.java 68 * @param delta the amount to subtract the count by.
70 public void subtract(final long delta) method in class:CounterStatistic
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
AbstractBox.java 78 center.subtract(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]),
81 center.subtract(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]),
83 center.subtract(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]),
85 center.subtract(axes[0]).addLocal(axes[1]).addLocal(axes[2])

Completed in 365 milliseconds

1 2 3 4 5 6 7 8 91011>>