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

12 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_mult_h.c 20 GCM multiply by H
22 @param I The value to multiply H by
  /external/skia/src/effects/
SkEmbossMask.cpp 109 uint8_t* multiply = (uint8_t*)alpha + planeSize; local
110 uint8_t* additive = multiply + planeSize;
167 multiply[x] = SkToU8(mul);
170 // multiply[x] = 0xFF;
172 // ((uint8_t*)alpha)[x] = alpha[x] * multiply[x] >> 8;
176 multiply += rowBytes;
  /external/jpeg/
jidctfst.c 115 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
119 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
125 * declared INT32, so a 32-bit multiply will be used.
233 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */
253 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */
255 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */
256 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */
257 tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; /* -2*(c2+c6) */
319 tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
335 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 *
    [all...]
jidctfst.S 127 // tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13 (r6)
185 // tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); (r1)
193 // z5 = MULTIPLY(z10 + z12, FIX_1_847759065); (r8)
194 // tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; (r0)
195 // tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; (r2)
287 // tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562) - tmp13; (r6)
319 // tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); (r1)
327 // z5 = MULTIPLY(z10 + z12, FIX_1_847759065); (r8)
328 // tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; (r0)
329 // tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; (r2
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ParticularDoubleValue.java 95 public DoubleValue multiply(DoubleValue other) method in class:ParticularDoubleValue
97 return other.multiply(this);
149 public DoubleValue multiply(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 95 public FloatValue multiply(FloatValue other) method in class:ParticularFloatValue
97 return other.multiply(this);
149 public FloatValue multiply(ParticularFloatValue other) method in class:ParticularFloatValue
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);
SpecificLongValue.java 75 public LongValue multiply(LongValue other) method in class:SpecificLongValue
77 return other.multiply(this);
167 public LongValue multiply(SpecificLongValue other) method in class:SpecificLongValue
169 return new CompositeLongValue(this, CompositeLongValue.MULTIPLY, other);
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);
  /dalvik/libcore/math/src/test/java/tests/api/java/math/
BigIntegerTest.java 315 bi = BigInteger.valueOf(rand.nextInt(1000000)).multiply(
323 bi = new BigInteger(70, rand).multiply(new BigInteger(70, rand));
347 BigInteger c = a.multiply(b);
387 BigInteger wp = a.multiply(b);
691 .multiply(two.pow(40)).equals(twoToTheSeventy));
714 + " equals " + inv, one.equals(a.multiply(inv).mod(
735 + " equals " + inv, one.equals(a.multiply(inv).mod(
848 assertTrue("<<1 == *2", b.multiply(two).equals(a));
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
dct.cpp 118 /* assume FAST MULTIPLY */
133 /* assume FAST MULTIPLY */
213 /* assume FAST MULTIPLY */
228 /* assume FAST MULTIPLY */
345 /* assume FAST MULTIPLY */
357 /* assume FAST MULTIPLY */
427 /* assume FAST MULTIPLY */
439 /* assume FAST MULTIPLY */
550 /* assume FAST MULTIPLY */
558 /* assume FAST MULTIPLY */
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 99 n = p.multiply(q);
122 phi = pSub1.multiply(qSub1);
  /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
  /dalvik/vm/mterp/armv5te/
OP_MUL_LONG_2ADDR.S 3 * Signed 64-bit integer multiply, "/2addr" version.
  /dalvik/vm/mterp/armv6t2/
OP_MUL_LONG_2ADDR.S 3 * Signed 64-bit integer multiply, "/2addr" version.
  /dalvik/vm/mterp/x86-atom/
OP_MUL_INT.S 19 * Code: 32-bit multiply operation. Performs "%ecx = %ecx * %edx"
  /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);
  /external/dropbear/libtommath/
bn_mp_exptmod_fast.c 242 /* ok window is filled so square as required and multiply */
253 /* then multiply */
268 /* if bits remain then square/multiply */
270 /* square then multiply if the bit is set */
282 /* then multiply */
bn_s_mp_exptmod.c 187 /* ok window is filled so square as required and multiply */
198 /* then multiply */
213 /* if bits remain then square/multiply */
215 /* square then multiply if the bit is set */
226 /* then multiply */
  /external/sonivox/arm-fm-22k/lib_src/
eas_math.h 67 /* Fixed point multiply 0.15 x 0.15 = 0.15 returned as 32-bits */
69 /*lint -e(704) <avoid multiply for performance>*/ \
72 /* Fixed point multiply 0.7 x 0.7 = 0.15 returned as 32-bits */
74 /*lint -e(704) <avoid multiply for performance>*/ \
77 /* Fixed point multiply 0.8 x 0.8 = 0.15 returned as 32-bits */
79 /*lint -e(704) <avoid multiply for performance>*/ \
82 /* Fixed point multiply 0.8 x 1.15 = 0.15 returned as 32-bits */
120 Multiply the signed audio sample by the unsigned fraction.
195 // that we are using b1p instead of b1, and thereby multiply by
196 // an extra factor of 2. Rather than multiply by an extra factor of 2
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_math.h 67 /* Fixed point multiply 0.15 x 0.15 = 0.15 returned as 32-bits */
69 /*lint -e(704) <avoid multiply for performance>*/ \
72 /* Fixed point multiply 0.7 x 0.7 = 0.15 returned as 32-bits */
74 /*lint -e(704) <avoid multiply for performance>*/ \
77 /* Fixed point multiply 0.8 x 0.8 = 0.15 returned as 32-bits */
79 /*lint -e(704) <avoid multiply for performance>*/ \
82 /* Fixed point multiply 0.8 x 1.15 = 0.15 returned as 32-bits */
120 Multiply the signed audio sample by the unsigned fraction.
195 // that we are using b1p instead of b1, and thereby multiply by
196 // an extra factor of 2. Rather than multiply by an extra factor of 2
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.h 67 /* Fixed point multiply 0.15 x 0.15 = 0.15 returned as 32-bits */
69 /*lint -e(704) <avoid multiply for performance>*/ \
72 /* Fixed point multiply 0.7 x 0.7 = 0.15 returned as 32-bits */
74 /*lint -e(704) <avoid multiply for performance>*/ \
77 /* Fixed point multiply 0.8 x 0.8 = 0.15 returned as 32-bits */
79 /*lint -e(704) <avoid multiply for performance>*/ \
82 /* Fixed point multiply 0.8 x 1.15 = 0.15 returned as 32-bits */
120 Multiply the signed audio sample by the unsigned fraction.
195 // that we are using b1p instead of b1, and thereby multiply by
196 // an extra factor of 2. Rather than multiply by an extra factor of 2
    [all...]
  /external/webkit/WebCore/css/
WebKitCSSMatrix.idl 58 // Multiply this matrix by secondMatrix, on the right (result = this * secondMatrix)
59 [Immutable] WebKitCSSMatrix multiply(in WebKitCSSMatrix secondMatrix);

Completed in 951 milliseconds

12 3 4 5 6 7 8 91011>>