Searched defs:multiply (Results 1 - 25 of 74) 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
139 public ECPoint multiply(BigInteger k) method in class:ECPoint
157 return this.multiplier.multiply(this, k, preCompInfo);
274 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
297 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO));
299 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
300 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
406 if (this.getY().multiply(this.getX().invert())
503 = (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/chromium_org/third_party/WebKit/Source/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.java41 static void multiply(byte[] block, byte[] val) method in class:GCMUtil
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js172 mat2.multiply = function (out, a, b) {
183 * Alias for {@link mat2.multiply}
186 mat2.mul = mat2.multiply;
H A Dmat2d.js154 mat2d.multiply = function (out, a, b) {
170 * Alias for {@link mat2d.multiply}
173 mat2d.mul = mat2d.multiply;
H A Dquat.js139 quat.multiply = function(out, a, b) {
151 * Alias for {@link quat.multiply}
154 quat.mul = quat.multiply;
H A Dmat3.js241 mat3.multiply = function (out, a, b) {
265 * Alias for {@link mat3.multiply}
268 mat3.mul = mat3.multiply;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSMatrix.cpp92 PassRefPtr<CSSMatrix> CSSMatrix::multiply(CSSMatrix* secondMatrix) const function in class:WebCore::CSSMatrix
97 return CSSMatrix::create(TransformationMatrix(m_matrix).multiply(secondMatrix->m_matrix));
/external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
H A DFFTFrameMac.cpp101 void FFTFrame::multiply(const FFTFrame& frame) function in class:WebCore::FFTFrame
115 // Complex multiply
/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
/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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrix.h99 SVGMatrix multiply(const SVGMatrix& other) function in class:WebCore::SVGMatrix

Completed in 584 milliseconds

123