HomeSort by relevance Sort by last modified time
    Searched refs:multiply (Results 226 - 250 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/libagl/
context.h 392 static void multiply(matrixf_t& r,
402 void multiply(const matrixf_t& rhs);
462 void multiply(const matrixf_t& rhs);
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DIMath.js 60 void translate(in float x, in float y, in float z); // multiply the matrix by passed translation values on the right
61 void translate(in J3DVector3 v); // multiply the matrix by passed translation values on the right
62 void scale(in float x, in float y, in float z); // multiply the matrix by passed scale values on the right
63 void scale(in J3DVector3 v); // multiply the matrix by passed scale values on the right
64 void rotate(in float angle, // multiply the matrix by passed rotation values on the right
66 void rotate(in float angle, in J3DVector3 v); // multiply the matrix by passed rotation values on the right
68 void multiply(in CanvasMatrix matrix); // multiply the matrix by the passed matrix on the right
70 void ortho(in float left, in float right, // multiply the matrix by the passed ortho values on the right
73 void frustum(in float left, in float right, // multiply the matrix by the passed frustum values on the righ
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/
Primes.java 531 BigInteger c = tx2.multiply(c0).add(ONE);
542 c = tx2.multiply(c0).add(ONE);
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/
vec2-spec.js 111 describe("multiply", function() {
112 it("should have an alias called 'mul'", function() { expect(vec2.mul).toEqual(vec2.multiply); });
115 beforeEach(function() { result = vec2.multiply(out, vecA, vecB); });
124 beforeEach(function() { result = vec2.multiply(vecA, vecA, vecB); });
132 beforeEach(function() { result = vec2.multiply(vecB, vecA, vecB); });
vec3-spec.js 246 describe("multiply", function() {
247 it("should have an alias called 'mul'", function() { expect(vec3.mul).toEqual(vec3.multiply); });
250 beforeEach(function() { result = vec3.multiply(out, vecA, vecB); });
259 beforeEach(function() { result = vec3.multiply(vecA, vecA, vecB); });
267 beforeEach(function() { result = vec3.multiply(vecB, vecA, vecB); });
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
quat.js 214 quat.multiply = function(out, a, b) {
226 * Alias for {@link quat.multiply}
229 quat.mul = quat.multiply;
vec4.js 155 vec4.multiply = function(out, a, b) {
164 * Alias for {@link vec4.multiply}
167 vec4.mul = vec4.multiply;
  /external/pdfium/third_party/bigint/
BigUnsigned.cc 260 * I eventually decided to use bit-shifting algorithms. To multiply `a'
305 void BigUnsigned::multiply(const BigUnsigned &a, const BigUnsigned &b) { function in class:BigUnsigned
306 DTRT_ALIASED(this == &a || this == &b, multiply(a, b));
495 * Compare this to the middle section of `multiply'. They
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
vr4130.s 333 # Check every affected multiply-accumulate instruction.
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 149 lhs.multiply(rhs);
Matrix3fTest.java 208 lhs.multiply(rhs);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunction.java 204 * Multiply the instance by a polynomial.
205 * @param p polynomial to multiply by
208 public PolynomialFunction multiply(final PolynomialFunction p) { method in class:PolynomialFunction
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldMatrix.java 90 * @param d value to multiply all entries by
103 FieldMatrix<T> multiply(FieldMatrix<T> m) throws IllegalArgumentException; method in interface:FieldMatrix
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 514 ECFieldElement rhs = x.square().add(this.a).multiply(x).add(this.b);
774 ECFieldElement beta = x.square().invert().multiply(this.getB()).add(this.getA()).add(x);
793 y = z.multiply(x);
836 z = z.square().add(w2.multiply(t));
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Field.java 73 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP192K1Field
SecP192R1Field.java 74 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP192R1Field
SecP224K1Field.java 74 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP224K1Field
SecP256K1Field.java 75 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP256K1Field
  /external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
BigIntegerMathTest.java 153 expected = expected.multiply(BigInteger.valueOf(i));
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedLongTest.java 170 .multiply(bUnsigned.bigIntegerValue())
  /external/libvpx/libvpx/vp8/common/x86/
idctllm_mmx.asm 17 ; * This implementation makes use of 16 bit fixed point version of two multiply
28 ; * is bigger than 32768, in signed 16 bit multiply, it becomes a negative
  /external/proguard/src/proguard/evaluation/
Processor.java 268 stack.push(stack.ipop().multiply(stack.ipop()));
272 stack.push(stack.lpop().multiply(stack.lpop()));
276 stack.push(stack.fpop().multiply(stack.fpop()));
280 stack.push(stack.dpop().multiply(stack.dpop()));
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CameraSystem.java 131 mBias.multiply(BIAS_SPEED * timeDelta);
  /frameworks/base/libs/hwui/
DamageAccumulator.cpp 64 outMatrix->multiply(*currentFrame->matrix4);

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 91011>>