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

1 2 3 4

  /frameworks/base/libs/rs/
rsMatrix.h 52 void multiply(const Matrix *rhs) { function in struct:android::renderscript::Matrix
60 multiply(&tmp);
65 multiply(&tmp);
70 multiply(&tmp);
  /libcore/luni/src/main/java/java/math/
Multiplication.java 31 // * between Karatsuba and Pencil and Paper multiply.
77 bigFivePows[i] = bigFivePows[i - 1].multiply(bigFivePows[1]);
78 bigTenPows[i] = bigTenPows[i - 1].multiply(BigInteger.TEN);
83 // The method multiply has been removed in favor of using OpenSSL BIGNUM
109 : val.multiply(powerOf10(exp)));
160 res = res.multiply(powerOfFive);
163 res = res.multiply(bigFivePows[1].pow(intExp));
187 return val.multiply(bigFivePows[exp]);
189 return val.multiply(bigFivePows[1].pow(exp));
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DSASigner.java 73 k = k.modInverse(params.getQ()).multiply(
74 m.add(((DSAPrivateKeyParameters)key).getX().multiply(r)));
112 BigInteger u1 = m.multiply(w).mod(params.getQ());
113 BigInteger u2 = r.multiply(w).mod(params.getQ());
118 BigInteger v = u1.multiply(u2).mod(params.getP()).mod(params.getQ());
  /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 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
SpecificDoubleValue.java 75 public DoubleValue multiply(DoubleValue other) method in class:SpecificDoubleValue
77 return other.multiply(this);
129 public DoubleValue multiply(SpecificDoubleValue other) method in class:SpecificDoubleValue
131 return new CompositeDoubleValue(this, CompositeDoubleValue.MULTIPLY, other);
SpecificFloatValue.java 75 public FloatValue multiply(FloatValue other) method in class:SpecificFloatValue
77 return other.multiply(this);
129 public FloatValue multiply(SpecificFloatValue other) method in class:SpecificFloatValue
131 return new CompositeFloatValue(this, CompositeFloatValue.MULTIPLY, other);
UnknownDoubleValue.java 75 public DoubleValue multiply(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 75 public FloatValue multiply(FloatValue other) method in class:UnknownFloatValue
LongValue.java 103 public LongValue multiply(LongValue other) method in class:LongValue
106 return other.multiply(this);
260 public LongValue multiply(SpecificLongValue other) method in class:LongValue
416 public LongValue multiply(ParticularLongValue other) method in class:LongValue
418 return multiply((SpecificLongValue)other);
ParticularLongValue.java 95 public LongValue multiply(LongValue other) method in class:ParticularLongValue
97 return other.multiply(this);
183 public LongValue multiply(ParticularLongValue other) method in class:ParticularLongValue
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);
  /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/webkit/WebCore/platform/graphics/cg/
PatternCG.cpp 58 patternTransform.multiply(userSpaceTransformation);
  /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/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RSABlindedEngine.java 108 BigInteger blindedInput = r.modPow(e, m).multiply(input).mod(m);
112 result = blindedResult.multiply(rInv).mod(m);
  /external/webkit/WebCore/svg/
SVGMatrix.idl 35 [Custom] SVGMatrix multiply(in SVGMatrix secondMatrix);
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 259 bi = BigInteger.valueOf(rand.nextInt(1000000)).multiply(
267 bi = new BigInteger(70, rand).multiply(new BigInteger(70, rand));
291 BigInteger c = a.multiply(b);
317 BigInteger wp = a.multiply(b);
555 .multiply(two.pow(40)).equals(twoToTheSeventy));
572 + " equals " + inv, one.equals(a.multiply(inv).mod(
593 + " equals " + inv, one.equals(a.multiply(inv).mod(
694 assertTrue("<<1 == *2", b.multiply(two).equals(a));
701 assertTrue("<<1 == *2 negative", d.multiply(two).equals(c));
708 * @tests java.math.BigInteger#multiply(java.math.BigInteger
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 104 n = p.multiply(q);
127 phi = pSub1.multiply(qSub1);
  /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);
  /external/libvpx/vp8/decoder/arm/armv6/
dequantize_v6.asm 31 smulbb r7, r3, r4 ;multiply
42 smulbb r7, r3, r4 ;multiply
  /external/libvpx/vp8/encoder/ppc/
rdopt_altivec.asm 35 vmsumshm v2, v0, v0, v3 ;# multiply differences
42 vmsumshm v1, v0, v0, v2 ;# multiply differences

Completed in 1606 milliseconds

1 2 3 4