Searched refs:subtract (Results 1 - 25 of 194) sorted by relevance

12345678

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java68 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/crypto/generators/
H A DRSAKeyPairGenerator.java62 if (e.gcd(p.subtract(ONE)).equals(ONE))
80 if (q.subtract(p).abs().bitLength() < mindiffbits)
95 if (e.gcd(q.subtract(ONE)).equals(ONE))
125 pSub1 = p.subtract(ONE);
126 qSub1 = q.subtract(ONE);
H A DDHKeyGeneratorHelper.java37 BigInteger max = p.subtract(TWO);
41 max = q.subtract(TWO);
H A DDSAParametersGenerator.java182 BigInteger p = x.subtract(c.subtract(ONE));
201 BigInteger e = p.subtract(ONE).divide(q);
202 BigInteger pSub2 = p.subtract(TWO);
253 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
297 BigInteger p = X.subtract(c.subtract(ONE));
344 BigInteger e = p.subtract(ONE).divide(q);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java61 IntSet subtract(IntSet a); method in interface:IntSet
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DTnaf.java101 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(
[all...]
H A DECFieldElement.java14 public abstract ECFieldElement subtract(ECFieldElement b); method in class:ECFieldElement
75 public ECFieldElement subtract(ECFieldElement b) method in class:ECFieldElement.Fp
77 return new Fp(q, x.subtract(b.toBigInteger()).mod(q));
129 BigInteger qMinusOne = q.subtract(ECConstants.ONE);
153 || !(P.multiply(P).subtract(fourQ).modPow(legendreExponent, q).equals(qMinusOne)));
178 // BigInteger qMinusOne = q.subtract(ECConstants.ONE);
194 // || !(r.multiply(r).subtract(fourX).modPow(legendreExponent, q).equals(qMinusOne)));
203 // BigInteger root = twoR.modPow(q.subtract(ECConstants.TWO), q)
221 // return w.multiply(w).subtract(ECConstants.TWO).mod(p);
225 // return w1.multiply(w2).subtract(wOn
997 public ECFieldElement subtract(final ECFieldElement b) method in class:ECFieldElement.F2m
[all...]
H A DSimpleBigDecimal.java104 public SimpleBigDecimal subtract(SimpleBigDecimal b) method in class:SimpleBigDecimal
109 public SimpleBigDecimal subtract(BigInteger b) method in class:SimpleBigDecimal
111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
202 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
H A DECPoint.java119 public abstract ECPoint subtract(ECPoint b); method in class:ECPoint
271 ECFieldElement gamma = b.y.subtract(this.y).divide(b.x.subtract(this.x));
273 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x);
274 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
299 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
300 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(thi
306 public ECPoint subtract(ECPoint b) method in class:ECPoint.Fp
511 public ECPoint subtract(ECPoint b) method in class:ECPoint.F2m
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java81 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);
H A DFloatValue.java81 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);
H A DParticularDoubleValue.java85 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue
92 return value == 0.0 ? other : other.subtract(this);
139 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java85 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue
92 return value == 0.0 ? other : other.subtract(this);
139 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:UnknownFloatValue
H A DLongValue.java87 public LongValue subtract(LongValue other) method in class:LongValue
97 return other.subtract(this);
244 public LongValue subtract(SpecificLongValue other) method in class:LongValue
400 public LongValue subtract(ParticularLongValue other) method in class:LongValue
402 return subtract((SpecificLongValue)other);
/external/replicaisland/src/com/replica/replicaisland/
H A DOrbitalMagnetComponent.java72 mDelta.subtract(mCenter);
89 targetVelocity.subtract(mVelocity);
99 mDelta.subtract(mRim);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DAbstractBox.java78 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])
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DBigIntegers.java108 return createRandomInRange(ZERO, max.subtract(min), random).add(min);
121 return new BigInteger(max.subtract(min).bitLength() - 1, random).add(min);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctionalTest.cpp73 static int subtract(int x, int y) function in namespace:__anon11283
83 Function<int ()> subtractTwoFromFourFunction = bind(subtract, 4, 2);
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestIntervalSet.java152 String result = (s.subtract(s2)).toString();
160 String result = (s.subtract(s2)).toString();
165 result = (s.subtract(s3)).toString();
173 String result = (s.subtract(s2)).toString();
178 result = (s.subtract(s3)).toString();
186 String result = (s.subtract(s2)).toString();
196 String result = (s.subtract(s2)).toString();
201 result = (s.subtract(s3)).toString();
214 String result = (s.subtract(s2)).toString();
254 String result = s.subtract(s
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.h48 void subtract(const Region&);
148 static inline Region subtract(const Region& a, const Region& b) function in namespace:WebCore
151 result.subtract(b);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintDistLimit.java60 Vector3f v = translations[frame].subtract(targetLocation);
89 Vector3f v = currentLocation.subtract(targetLocation);
112 v = targetLocation.subtract(currentLocation).normalizeLocal().multLocal(dist * influence);

Completed in 932 milliseconds

12345678