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

1 2 3 4

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 62 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);
DHKeyGeneratorHelper.java 37 BigInteger max = p.subtract(TWO);
41 max = q.subtract(TWO);
DSAParametersGenerator.java 128 BigInteger p = x.subtract(c.subtract(ONE));
147 BigInteger e = p.subtract(ONE).divide(q);
148 BigInteger pSub2 = p.subtract(TWO);
198 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
242 BigInteger p = X.subtract(c.subtract(ONE));
288 // BigInteger e = p.subtract(ONE).divide(q);
DHParametersHelper.java 46 BigInteger pMinusTwo = p.subtract(TWO);
DSAKeyPairGenerator.java 51 // return c.mod(q.subtract(ONE)).add(ONE);
54 return BigIntegers.createRandomInRange(ONE, q.subtract(ONE), random);
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
BigIntegers.java 63 return createRandomInRange(ZERO, max.subtract(min), random).add(min);
76 return new BigInteger(max.subtract(min).bitLength() - 1, random).add(min);
  /external/proguard/src/proguard/evaluation/value/
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 85 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
ParticularFloatValue.java 85 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
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);
UnknownDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 65 public FloatValue subtract(FloatValue other) method in class:UnknownFloatValue
LongValue.java 87 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);
ParticularLongValue.java 85 public LongValue subtract(LongValue other) method in class:ParticularLongValue
92 return other.subtract(this);
173 public LongValue subtract(ParticularLongValue other) method in class:ParticularLongValue
SpecificLongValue.java 65 public LongValue subtract(LongValue other) method in class:SpecificLongValue
72 return other.subtract(this);
153 public LongValue subtract(SpecificLongValue other) method in class:SpecificLongValue
157 new CompositeLongValue(this, CompositeLongValue.SUBTRACT, other);
164 new CompositeLongValue(other, CompositeLongValue.SUBTRACT, this);
UnknownLongValue.java 65 public LongValue subtract(LongValue other) method in class:UnknownLongValue
IntegerValue.java 95 public abstract IntegerValue subtract(IntegerValue other); method in class:IntegerValue
272 public IntegerValue subtract(UnknownIntegerValue other) method in class:IntegerValue
274 return subtract((IntegerValue)other);
516 public IntegerValue subtract(SpecificIntegerValue other) method in class:IntegerValue
518 return subtract((IntegerValue)other);
760 public IntegerValue subtract(ParticularIntegerValue other) method in class:IntegerValue
762 return subtract((SpecificIntegerValue)other);
UnknownIntegerValue.java 81 public IntegerValue subtract(IntegerValue other) method in class:UnknownIntegerValue
ParticularIntegerValue.java 112 public IntegerValue subtract(IntegerValue other) method in class:ParticularIntegerValue
119 return other.subtract(this);
240 public IntegerValue subtract(ParticularIntegerValue other) method in class:ParticularIntegerValue
  /frameworks/base/include/ui/
Region.h 71 const Region subtract(const Rect& rhs) const;
76 const Region subtract(const Region& rhs) const;
88 const Region subtract(const Region& rhs, int dx, int dy) const;
167 return subtract(rhs);
  /packages/apps/Gallery3D/src/com/cooliris/media/
Vector3f.java 56 public void subtract(Vector3f vector) { method in class:Vector3f
  /dalvik/vm/arch/arm/
CallEABI.S 177 @ count of double-words from r2, multiply it by 8, and subtract that
316 @ We have the padded-out word count in r2. We subtract 2 from it
320 subs r2, r2, #2 @ subtract 2 (for contents of r2/r3)
330 bic sp, #4 @ subtract another 4 ifn
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RSABlindedEngine.java 106 BigInteger r = BigIntegers.createRandomInRange(ONE, m.subtract(ONE), random);

Completed in 107 milliseconds

1 2 3 4