HomeSort by relevance Sort by last modified time
    Searched full:multiply (Results 76 - 100 of 579) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
CompositeLongValue.java 33 public static final byte MULTIPLY = '*';
UnknownIntegerValue.java 91 public IntegerValue multiply(IntegerValue other) method in class:UnknownIntegerValue
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);
  /external/webkit/WebCore/bindings/js/
JSSVGMatrixCustom.cpp 34 JSValue JSSVGMatrix::multiply(ExecState* exec, const ArgList& args) function in class:WebCore::JSSVGMatrix
  /external/webkit/WebCore/html/
HTMLPreElement.cpp 54 // multiply by the value of the attribute and then set that as the width CSS
  /external/webkit/WebCore/platform/graphics/cg/
PatternCG.cpp 58 patternTransform.multiply(userSpaceTransformation);
  /external/webkit/WebCore/platform/graphics/chromium/
GlyphPageTreeNodeLinux.cpp 56 // textToGlyphs takes a byte count, not a glyph count so we multiply by two.
  /external/webkit/WebCore/svg/
SVGFEBlendElement.cpp 47 else if (value == "multiply")
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
RSAEngine.java 152 h = h.multiply(qInv);
156 m = h.multiply(q);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Xfermodes.java 89 new PorterDuffXfermode(PorterDuff.Mode.MULTIPLY),
97 "Darken", "Lighten", "Multiply", "Screen"
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mul2add.c 29 @param A First point to multiply
31 @param B Second point to multiply
  /external/tremolo/Tremolo/
misc.h 67 /* 64 bit multiply */
108 /* 32 bit multiply, more portable but less accurate */
  /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};
  /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);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1withDSA_SignatureImpl.java 243 s = k.modInverse(q).multiply(digestBI.add(x.multiply(r)).mod(q))
381 u1 = (new BigInteger(1, digest)).multiply(w).mod(q);
382 u2 = r.multiply(w).mod(q);
384 v = g.modPow(u1, p).multiply(y.modPow(u2, p)).mod(p).mod(q);
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wtengine.c 94 /*lint -e{703} <avoid multiply for performance>*/
98 /*lint -e{703} <avoid multiply for performance>*/
195 /*lint -e{701} <avoid multiply for performance>*/
197 /*lint -e{701} <avoid multiply for performance>*/
235 /*lint -e{701} <avoid multiply for performance>*/
237 /*lint -e{701} <avoid multiply for performance>*/
286 /*lint -e{701} <avoid multiply for performance>*/
288 /*lint -e{701} <avoid multiply for performance>*/
322 /*lint -e{701} <avoid multiply for performance>*/
324 /*lint -e{701} <avoid multiply for performance>*
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtengine.c 94 /*lint -e{703} <avoid multiply for performance>*/
98 /*lint -e{703} <avoid multiply for performance>*/
195 /*lint -e{701} <avoid multiply for performance>*/
197 /*lint -e{701} <avoid multiply for performance>*/
235 /*lint -e{701} <avoid multiply for performance>*/
237 /*lint -e{701} <avoid multiply for performance>*/
286 /*lint -e{701} <avoid multiply for performance>*/
288 /*lint -e{701} <avoid multiply for performance>*/
322 /*lint -e{701} <avoid multiply for performance>*/
324 /*lint -e{701} <avoid multiply for performance>*
    [all...]
  /external/netperf/
netcpu_pstatnew.c 326 /* multiply by 100 and divide by total and you get whole
327 percentages. multiply by 1000 and divide by total and you get
328 tenths of percentages. multiply by 10000 and divide by total
  /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...]
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigDecimalArithmeticTest.java 34 * Methods: add, subtract, multiply, divide
458 * Multiply two numbers of positive scales
463 method = "multiply",
475 BigDecimal result = aNumber.multiply(bNumber);
481 * Multiply two numbers of positive scales using MathContext
486 method = "multiply",
499 BigDecimal result = aNumber.multiply(bNumber, mc);
505 * Multiply two numbers of negative scales
510 method = "multiply",
522 BigDecimal result = aNumber.multiply(bNumber)
    [all...]
BigIntegerHashCodeTest.java 55 aNumber1.multiply(aNumber2).toByteArray();
  /cts/tests/tests/graphics/src/android/graphics/cts/
LightingColorFilterTest.java 76 // multiply before add

Completed in 708 milliseconds

1 2 34 5 6 7 8 91011>>