Searched defs:multiply (Results 26 - 50 of 126) sorted by relevance

123456

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Field.java73 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP192K1Field
H A DSecP192R1Field.java74 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP192R1Field
H A DSecP224K1Field.java74 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP224K1Field
H A DSecP224K1FieldElement.java91 public ECFieldElement multiply(ECFieldElement b) method in class:SecP224K1FieldElement
94 SecP224K1Field.multiply(x, ((SecP224K1FieldElement)b).x, z);
100 // return multiply(b.invert());
103 SecP224K1Field.multiply(z, x, z);
156 SecP224K1Field.multiply(x2, x1, x2);
159 SecP224K1Field.multiply(x3, x1, x3);
162 SecP224K1Field.multiply(x4, x1, x4);
165 SecP224K1Field.multiply(x8, x4, x8);
168 SecP224K1Field.multiply(x11, x3, x11);
171 SecP224K1Field.multiply(x1
[all...]
H A DSecP224R1Field.java74 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP224R1Field
H A DSecP256K1Field.java75 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP256K1Field
H A DSecP256R1Field.java71 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP256R1Field
H A DSecP384R1Field.java77 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP384R1Field
H A DSecP521R1Field.java54 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP521R1Field
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c91 static int multiply(int a, int b);
98 {"*", multiply},
110 static int multiply(int a, int b) { function
/external/pdfium/third_party/bigint/
H A DBigInteger.cc247 void BigInteger::multiply(const BigInteger &a, const BigInteger &b) { function in class:BigInteger
248 DTRT_ALIASED(this == &a || this == &b, multiply(a, b));
259 mag.multiply(a.mag, b.mag);
/external/proguard/src/proguard/evaluation/value/
H A DIntegerValue.java105 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);
H A DLongValue.java103 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);
H A DParticularIntegerValue.java122 public IntegerValue multiply(IntegerValue other) method in class:ParticularIntegerValue
124 return other.multiply(this);
250 public IntegerValue multiply(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java95 public LongValue multiply(LongValue other) method in class:ParticularLongValue
97 return other.multiply(this);
183 public LongValue multiply(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java90 public IntegerValue multiply(IntegerValue other) method in class:SpecificIntegerValue
92 return other.multiply(this);
222 public IntegerValue multiply(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DSpecificLongValue.java75 public LongValue multiply(LongValue other) method in class:SpecificLongValue
77 return other.multiply(this);
167 public LongValue multiply(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java91 public IntegerValue multiply(IntegerValue other) method in class:UnknownIntegerValue
H A DUnknownLongValue.java75 public LongValue multiply(LongValue other) method in class:UnknownLongValue
/external/skia/src/effects/
H A DSkEmbossMask.cpp59 uint8_t* multiply = (uint8_t*)alpha + planeSize; local
60 uint8_t* additive = multiply + planeSize;
104 multiply[x] = SkToU8(mul);
108 multiply += rowBytes;
/external/skqp/src/effects/
H A DSkEmbossMask.cpp59 uint8_t* multiply = (uint8_t*)alpha + planeSize; local
60 uint8_t* additive = multiply + planeSize;
104 multiply[x] = SkToU8(mul);
108 multiply += rowBytes;
/external/tensorflow/tensorflow/contrib/kfac/python/ops/
H A Destimator.py224 def multiply(self, vecs_and_vars): member in class:FisherEstimator
236 lambda fb, vec: fb.multiply(vec))
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
H A Dmerge.py610 @tf_export('keras.layers.multiply')
611 def multiply(inputs, **kwargs): function
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DComposableFunction.java383 public ComposableFunction multiply(final UnivariateRealFunction f) { method in class:ComposableFunction
398 public ComposableFunction multiply(final double scaleFactor) { method in class:ComposableFunction
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java357 public Complex multiply(Complex rhs) { method in class:Complex
396 public Complex multiply(double rhs) { method in class:Complex
470 return this.add(this.sqrt1z().multiply(Complex.I)).log()
471 .multiply(Complex.I.negate());
493 return sqrt1z().add(this.multiply(Complex.I)).log()
494 .multiply(Complex.I.negate());
517 .multiply(Complex.I.divide(createComplex(2.0, 0.0)));
683 return this.log().multiply(x).exp();
813 * <code>sqrt(Complex.ONE.subtract(z.multiply(z)))</code>.</p>
825 return createComplex(1.0, 0.0).subtract(this.multiply(thi
[all...]

Completed in 2086 milliseconds

123456