Searched defs:multiply (Results 1 - 25 of 51) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECMultiplier.java18 ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo); method in interface:ECMultiplier
H A DFpNafMultiplier.java12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
14 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo) method in class:FpNafMultiplier
19 BigInteger h = e.multiply(BigInteger.valueOf(3));
H A DWNafMultiplier.java90 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo) method in class:WNafMultiplier
H A DWTauNafMultiplier.java15 * @param p The ECPoint.F2m to multiply.
16 * @param k The integer by which to multiply <code>k</code>.
19 public ECPoint multiply(ECPoint point, BigInteger k, PreCompInfo preCompInfo) method in class:WTauNafMultiplier
44 * @param p The ECPoint.F2m to multiply.
77 * @param p The ECPoint.F2m to multiply.
H A DECPoint.java91 // * @param multiplier The <code>ECMultiplier</code> to be used to multiply
134 public ECPoint multiply(BigInteger k) method in class:ECPoint
152 return this.multiplier.multiply(this, k, preCompInfo);
269 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
292 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO));
294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
295 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
401 if (this.getY().multiply(this.getX().invert())
498 = (ECFieldElement.F2m)lambda.multiply(thi
[all...]
H A DIntArray.java341 public IntArray multiply(IntArray other, int m) method in class:IntArray
H A DSimpleBigDecimal.java115 public SimpleBigDecimal multiply(SimpleBigDecimal b) method in class:SimpleBigDecimal
118 return new SimpleBigDecimal(bigInt.multiply(b.bigInt), scale + scale);
121 public SimpleBigDecimal multiply(BigInteger b) method in class:SimpleBigDecimal
123 return new SimpleBigDecimal(bigInt.multiply(b), scale);
/external/webkit/Source/WebCore/platform/audio/
H A DFFTFrameStub.cpp67 void FFTFrame::multiply(const FFTFrame& frame) function in class:WebCore::FFTFrame
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java32 static void multiply(byte[] block, byte[] val) method in class:GCMUtil
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java91 public abstract DoubleValue multiply(DoubleValue other); method in class:DoubleValue
171 public DoubleValue multiply(SpecificDoubleValue other) method in class:DoubleValue
173 return multiply((DoubleValue)other);
274 public DoubleValue multiply(ParticularDoubleValue other) method in class:DoubleValue
276 return multiply((SpecificDoubleValue)other);
H A DFloatValue.java91 public abstract FloatValue multiply(FloatValue other); method in class:FloatValue
171 public FloatValue multiply(SpecificFloatValue other) method in class:FloatValue
173 return multiply((FloatValue)other);
274 public FloatValue multiply(ParticularFloatValue other) method in class:FloatValue
276 return multiply((SpecificFloatValue)other);
H A DParticularDoubleValue.java95 public DoubleValue multiply(DoubleValue other) method in class:ParticularDoubleValue
97 return other.multiply(this);
149 public DoubleValue multiply(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java95 public FloatValue multiply(FloatValue other) method in class:ParticularFloatValue
97 return other.multiply(this);
149 public FloatValue multiply(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java75 public DoubleValue multiply(DoubleValue other) method in class:SpecificDoubleValue
77 return other.multiply(this);
129 public DoubleValue multiply(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java75 public FloatValue multiply(FloatValue other) method in class:SpecificFloatValue
77 return other.multiply(this);
129 public FloatValue multiply(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java75 public DoubleValue multiply(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java75 public FloatValue multiply(FloatValue other) method in class:UnknownFloatValue
H A DIntegerValue.java105 public abstract IntegerValue multiply(IntegerValue other) method in class:IntegerValue
288 public IntegerValue multiply(UnknownIntegerValue other) method in class:IntegerValue
290 return multiply((IntegerValue)other);
532 public IntegerValue multiply(SpecificIntegerValue other) method in class:IntegerValue
534 return multiply((IntegerValue)other);
776 public IntegerValue multiply(ParticularIntegerValue other) method in class:IntegerValue
778 return multiply((SpecificIntegerValue)other);
H A DLongValue.java103 public LongValue multiply(LongValue other) method in class:LongValue
106 return other.multiply(this);
260 public LongValue multiply(SpecificLongValue other) method in class:LongValue
416 public LongValue multiply(ParticularLongValue other) method in class:LongValue
418 return multiply((SpecificLongValue)other);
H A DParticularIntegerValue.java122 public IntegerValue multiply(IntegerValue other) method in class:ParticularIntegerValue
124 return other.multiply(this);
250 public IntegerValue multiply(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java95 public LongValue multiply(LongValue other) method in class:ParticularLongValue
97 return other.multiply(this);
183 public LongValue multiply(ParticularLongValue other) method in class:ParticularLongValue
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java55 public final void multiply(float magnitude) { method in class:Vector2
60 public final void multiply(Vector2 other) { method in class:Vector2
/external/webkit/Source/WebCore/platform/audio/mac/
H A DFFTFrameMac.cpp97 void FFTFrame::multiply(const FFTFrame& frame) function in class:WebCore::FFTFrame
126 // Complex multiply
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java129 public UnsignedInteger multiply(UnsignedInteger val) { method in class:UnsignedInteger
H A DUnsignedLong.java126 public UnsignedLong multiply(UnsignedLong val) { method in class:UnsignedLong

Completed in 183 milliseconds

123