HomeSort by relevance Sort by last modified time
    Searched refs:multiply (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/proguard/src/proguard/evaluation/value/
UnknownLongValue.java 75 public LongValue multiply(LongValue other) method in class:UnknownLongValue
IntegerValue.java 105 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);
UnknownIntegerValue.java 91 public IntegerValue multiply(IntegerValue other) method in class:UnknownIntegerValue
ParticularIntegerValue.java 122 public IntegerValue multiply(IntegerValue other) method in class:ParticularIntegerValue
124 return other.multiply(this);
250 public IntegerValue multiply(ParticularIntegerValue other) method in class:ParticularIntegerValue
SpecificIntegerValue.java 90 public IntegerValue multiply(IntegerValue other) method in class:SpecificIntegerValue
92 return other.multiply(this);
222 public IntegerValue multiply(SpecificIntegerValue other) method in class:SpecificIntegerValue
224 return new CompositeIntegerValue(this, CompositeIntegerValue.MULTIPLY, other);
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 162 public void multiply(Matrix4f rhs) { method in class:Matrix4f
170 multiply(tmp);
175 multiply(tmp);
180 multiply(tmp);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1withDSA_SignatureImpl.java 234 s = k.modInverse(q).multiply(digestBI.add(x.multiply(r)).mod(q))
372 u1 = (new BigInteger(1, digest)).multiply(w).mod(q);
373 u2 = r.multiply(w).mod(q);
375 v = g.modPow(u1, p).multiply(y.modPow(u2, p)).mod(p).mod(q);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RSACoreEngine.java 188 h = h.multiply(qInv);
192 m = h.multiply(q);
  /external/webkit/WebCore/css/
WebKitCSSMatrix.cpp 97 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::multiply(WebKitCSSMatrix* secondMatrix) const function in class:WebCore::WebKitCSSMatrix
103 tmp.multiply(secondMatrix->m_matrix);
WebKitCSSMatrix.h 112 // Multiply this matrix by secondMatrix, on the right (result = this * secondMatrix)
113 PassRefPtr<WebKitCSSMatrix> multiply(WebKitCSSMatrix* secondMatrix) const;
  /external/webkit/WebCore/platform/graphics/filters/
FEBlend.cpp 81 static unsigned char multiply(unsigned char colorA, unsigned char colorB, unsigned char alphaA, unsigned char alphaB) function in namespace:WebCore
124 static const BlendType callEffect[] = {unknown, normal, multiply, screen, darken, lighten};
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 995 public BigDecimal multiply(BigDecimal multiplicand) { method in class:BigDecimal
1023 public BigDecimal multiply(BigDecimal multiplicand, MathContext mc) { method in class:BigDecimal
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLVertex.java 83 transform.multiply(this, temp);
  /external/webkit/WebCore/bindings/js/
JSSVGMatrixCustom.cpp 34 JSValue JSSVGMatrix::multiply(ExecState* exec, const ArgList& args) function in class:WebCore::JSSVGMatrix
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 628 * multiply(new BigDecimal(String.valueOf(factor)))
635 * @see #multiply(BigDecimal)
637 public Duration multiply(int factor) { method in class:Duration
638 return multiply(BigDecimal.valueOf(factor));
664 * if you multiply "P1D" (1 day) with "0.5", then it will be 0.5 day,
676 * @param factor to multiply by
688 public abstract Duration multiply(final BigDecimal factor); method in class:Duration
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 380 multiply(d.mValues, a_mtx.mValues, b_mtx.mValues); method
883 multiply(tmp, mValues, matrix); method
894 multiply(tmp, matrix, mValues); method
981 * multiply two matrices and store them in a 3rd.
985 /*package*/ static void multiply(float dest[], float[] a, float[] b) { method in class:Matrix_Delegate
1046 multiply(tmp2, tmp, getScale(sx, sy)); method
1049 multiply(tmp, tmp2, getTranslate(px, py)); method
1101 multiply(tmp2, tmp, getRotate(sin, cos)); method
1104 multiply(tmp, tmp2, getTranslate(px, py)); method
1123 multiply(tmp2, tmp, new float[] { 1, kx, 0, ky, 1, 0, 0, 0, 1 }); method
1125 multiply(tmp, tmp2, getTranslate(px, py)); method
    [all...]
  /external/e2fsprogs/po/
at-expand.pl 90 $msg =~ s/\@m/multiply-claimed/g;
  /external/webkit/WebCore/rendering/
TransformState.cpp 60 // If we have an accumulated transform from last time, multiply in this transform
63 m_accumulatedTransform->multiply(transformFromContainer);
  /system/core/libmincrypt/tools/
DumpPublicKey.java 75 BigInteger RR = R.multiply(R).mod(N); // 2^4096 mod N
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerGradient.cpp 187 matrix.multiply(gradientServer->gradientTransform());
246 matrix.multiply(gradientTransform());
SVGPaintServerPattern.cpp 158 matrix.multiply(patternTransform());
  /frameworks/base/opengl/libagl/
matrix.cpp 252 void matrixf_t::multiply(matrixf_t& r, const matrixf_t& lhs, const matrixf_t& rhs) function in class:android::matrixf_t
311 void matrixf_t::multiply(const matrixf_t& rhs) { function in class:android::matrixf_t
313 multiply(r, *this, rhs);
377 multiply(rotation);
419 void matrix_stack_t::multiply(const matrixf_t& rhs) function in class:android::matrix_stack_t
421 stack[depth].multiply(rhs);
509 matrixf_t::multiply(temp_mvp, projection.top(), modelview.top());
519 matrixf_t::multiply(mvpv, vpt.matrix, temp_mvp);
848 c->transforms.current->multiply(rhs);
887 c->transforms.current->multiply(rhs)
    [all...]
  /external/qemu/
curses_keys.h 401 { "multiply", 0x0d7 },
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.h 95 AffineTransform& multiply(const AffineTransform&);
  /frameworks/base/include/private/opengles/
gl_context.h 390 static void multiply(matrixf_t& r,
400 void multiply(const matrixf_t& rhs);
460 void multiply(const matrixf_t& rhs);

Completed in 1538 milliseconds

12 3 4