HomeSort by relevance Sort by last modified time
    Searched refs:multiply (Results 51 - 75 of 490) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 91 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);
FloatValue.java 91 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);
ParticularDoubleValue.java 101 public DoubleValue multiply(DoubleValue other) method in class:ParticularDoubleValue
103 return other.multiply(this);
158 public DoubleValue multiply(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 101 public FloatValue multiply(FloatValue other) method in class:ParticularFloatValue
103 return other.multiply(this);
158 public FloatValue multiply(ParticularFloatValue other) method in class:ParticularFloatValue
UnknownDoubleValue.java 75 public DoubleValue multiply(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 75 public FloatValue multiply(FloatValue other) method in class:UnknownFloatValue
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 195 bi = BigInteger.valueOf(rand.nextInt(1000000)).multiply(
203 bi = new BigInteger(70, rand).multiply(new BigInteger(70, rand));
359 .multiply(two.pow(40)).equals(twoToTheSeventy));
376 + " equals " + inv, one.equals(a.multiply(inv).mod(
397 + " equals " + inv, one.equals(a.multiply(inv).mod(
498 assertTrue("<<1 == *2", b.multiply(two).equals(a));
505 assertTrue("<<1 == *2 negative", d.multiply(two).equals(c));
512 * @tests java.math.BigInteger#multiply(java.math.BigInteger)
517 aZillion.multiply(new BigInteger("3", 10))));
519 assertTrue("0*0", zero.multiply(zero).equals(zero))
    [all...]
BigIntegerMultiplyTest.java 28 * Method: multiply
32 * Multiply two negative numbers of the same length
42 BigInteger result = aNumber.multiply(bNumber);
52 * Multiply two numbers of the same length and different signs.
63 BigInteger result = aNumber.multiply(bNumber);
73 * Multiply two positive numbers of different length.
85 BigInteger result = aNumber.multiply(bNumber);
95 * Multiply two positive numbers of different length.
107 BigInteger result = aNumber.multiply(bNumber);
117 * Multiply two numbers of different length and different signs
    [all...]
  /frameworks/base/libs/hwui/
Matrix.h 138 multiply(inv);
141 void multiply(const Matrix4& v) { function in class:android::uirenderer::Matrix4
149 void multiply(float v);
164 multiply(u);
179 multiply(u);
185 multiply(u);
191 multiply(u);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 357 public Complex multiply(Complex rhs) { method in class:Complex
396 public Complex multiply(double rhs) { method in class:Complex
470 return this.add(this.sqrt1z().multiply(Complex.I)).log()
471 .multiply(Complex.I.negate());
493 return sqrt1z().add(this.multiply(Complex.I)).log()
494 .multiply(Complex.I.negate());
517 .multiply(Complex.I.divide(createComplex(2.0, 0.0)));
683 return this.log().multiply(x).exp();
813 * <code>sqrt(Complex.ONE.subtract(z.multiply(z)))</code>.</p>
825 return createComplex(1.0, 0.0).subtract(this.multiply(this)).sqrt()
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
OLSMultipleLinearRegression.java 118 return Q.multiply(augI).multiply(Q.transpose());
230 return Rinv.multiply(Rinv.transpose());
  /cts/tests/openglperf2/jni/graphics/
Matrix.h 36 void multiply(const Matrix& l, const Matrix& r);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 109 public SimpleBigDecimal multiply(SimpleBigDecimal b) method in class:SimpleBigDecimal
112 return new SimpleBigDecimal(bigInt.multiply(b.bigInt), scale + scale);
115 public SimpleBigDecimal multiply(BigInteger b) method in class:SimpleBigDecimal
117 return new SimpleBigDecimal(bigInt.multiply(b), scale);
Tnaf.java 87 BigInteger s1 = lambda.u.multiply(lambda.u);
90 BigInteger s2 = lambda.u.multiply(lambda.v);
93 BigInteger s3 = lambda.v.multiply(lambda.v).shiftLeft(1);
129 SimpleBigDecimal s1 = u.multiply(u);
132 SimpleBigDecimal s2 = u.multiply(v);
135 SimpleBigDecimal s3 = v.multiply(v).shiftLeft(1);
289 BigInteger gs = s.multiply(ns);
293 BigInteger js = vm.multiply(hs);
523 tw = ECConstants.TWO.multiply(us[0]).multiply(u1invert).mod(twoToW)
    [all...]
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417ECModulusGF.h 27 int32_t multiply(int32_t a, int32_t b);
  /external/skia/src/effects/
SkEmbossMask.cpp 96 uint8_t* multiply = (uint8_t*)alpha + planeSize; local
97 uint8_t* additive = multiply + planeSize;
150 multiply[x] = SkToU8(mul);
153 // multiply[x] = 0xFF;
155 // ((uint8_t*)alpha)[x] = alpha[x] * multiply[x] >> 8;
159 multiply += rowBytes;
  /libcore/benchmarks/src/benchmarks/regression/
BigIntegerBenchmark.java 46 x.multiply(y);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java 157 return mNum.multiply(r.mDen).compareTo(r.mNum.multiply(mDen)) * mDen.signum()
191 final BigInteger den = r1.mDen.multiply(r2.mDen);
192 final BigInteger num = r1.mNum.multiply(r2.mDen).add(r2.mNum.multiply(r1.mDen));
207 static BoundedRational multiply(BoundedRational r1, BoundedRational r2) { method in class:BoundedRational
213 final BigInteger num = r1.mNum.multiply(r2.mNum);
214 final BigInteger den = r1.mDen.multiply(r2.mDen);
238 return multiply(r1, inverse(r2));
251 if (!num_sqrt.multiply(num_sqrt).equals(r.mNum))
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
WavAnalyzer.java 164 fourierCoeff = fourierCoeff.add(phasor.multiply(noisePoints[j]));
165 phasor = phasor.multiply(rotator);
167 fourierCoeff = fourierCoeff.multiply(1.0 / noisePoints.length);
168 noisePower[i][s] = fourierCoeff.multiply(fourierCoeff.conjugate()).abs();
201 fourierCoeff = fourierCoeff.add(phasor.multiply(pipPoints[j]));
202 phasor = phasor.multiply(rotator);
204 fourierCoeff = fourierCoeff.multiply(1.0 / pipPoints.length);
207 fourierCoeff.multiply(fourierCoeff.conjugate()).abs();
  /cts/tests/openglperf2/jni/reference/scene/flocking/
WaterMeshNode.cpp 49 prog.mMVMatrix.multiply(view, model);
56 prog.mMVPMatrix.multiply(projection, prog.mMVMatrix);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLShape.java 76 transform = mTransform.multiply(transform);
92 mTransform = mTransform.multiply(mAnimateTransform);
M4.java 38 public void multiply(GLVertex src, GLVertex dest) { method in class:M4
44 public M4 multiply(M4 other) { method in class:M4
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
LaguerreSolver.java 337 newc = oldc.add(newc.multiply(root[i]));
390 d2v = dv.add(z.multiply(d2v));
391 dv = pv.add(z.multiply(dv));
392 pv = coefficients[j].add(z.multiply(pv));
394 d2v = d2v.multiply(new Complex(2.0, 0.0));
412 G2 = G.multiply(G);
414 delta = N1.multiply((N.multiply(H)).subtract(G2));
  /external/chromium-trace/catapult/telemetry/telemetry/util/
color_histogram.py 39 remainder = np.multiply(hist1, n2) - np.multiply(hist2, n1)
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 55 public final void multiply(float magnitude) { method in class:Vector2
60 public final void multiply(Vector2 other) { method in class:Vector2

Completed in 380 milliseconds

1 23 4 5 6 7 8 91011>>