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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECMultiplier.java 18 ECPoint multiply(ECPoint p, BigInteger k); method in interface:ECMultiplier
AbstractECMultiplier.java 7 public ECPoint multiply(ECPoint p, BigInteger k) method in class:AbstractECMultiplier
  /frameworks/rs/
rsMatrix2x2.h 44 void multiply(const rs_matrix2x2 *rhs) { function in struct:android::renderscript::Matrix2x2
rsMatrix3x3.h 44 void multiply(const rs_matrix3x3 *rhs) { function in struct:android::renderscript::Matrix3x3
rsMatrix4x4.h 61 void multiply(const rs_matrix4x4 *rhs) { function in struct:android::renderscript::Matrix4x4
67 multiply(&tmp);
72 multiply(&tmp);
77 multiply(&tmp);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FieldElement.java 42 * @param a element to multiply
45 T multiply(T a); method in interface:FieldElement
  /external/boringssl/src/ssl/test/runner/poly1305/
sum_amd64.s 82 multiply: label
109 JMP multiply
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_amd64.s 82 multiply: label
109 JMP multiply
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_amd64.s 82 multiply: label
109 JMP multiply
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
M4.java 38 public void multiply(GLVertex src, GLVertex dest) { method in class:M4
44 public M4 multiply(M4 other) { method in class:M4
GLVertex.java 83 transform.multiply(this, temp);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables1kGCMExponentiator.java 34 GCMUtil.multiply(y, (int[])lookupPowX2.elementAt(bit));
52 GCMUtil.multiply(tmp, tmp);
  /external/tensorflow/tensorflow/contrib/kfac/python/ops/
estimator.py 224 def multiply(self, vecs_and_vars): member in class:FisherEstimator
236 lambda fb, vec: fb.multiply(vec))
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
BigReal.java 245 public BigReal multiply(BigReal a) { method in class:BigReal
246 return new BigReal(d.multiply(a.d));
  /external/pdfium/third_party/bigint/
BigInteger.cc 247 void BigInteger::multiply(const BigInteger &a, const BigInteger &b) { function in class:BigInteger
248 DTRT_ALIASED(this == &a || this == &b, multiply(a, b));
258 // Multiply the magnitudes.
259 mag.multiply(a.mag, b.mag);
  /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
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);
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);
UnknownDoubleValue.java 75 public DoubleValue multiply(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 75 public FloatValue multiply(FloatValue other) method in class:UnknownFloatValue
UnknownLongValue.java 75 public LongValue multiply(LongValue other) method in class:UnknownLongValue

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>