/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
|
/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/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/opencv3/3rdparty/libwebp/dsp/ |
upsampling.c | 286 static WEBP_INLINE uint8_t multiply(uint8_t x, uint32_t m) { function 297 const uint8_t r = multiply(dither_hi(rgba4444[2 * i + 0]), mult); 298 const uint8_t g = multiply(dither_lo(rgba4444[2 * i + 0]), mult); 299 const uint8_t b = multiply(dither_hi(rgba4444[2 * i + 1]), mult);
|
/external/opencv3/modules/cudaarithm/src/ |
element_operations.cpp | 52 void cv::cuda::multiply(InputArray, InputArray, OutputArray, double, int, Stream&) { throw_no_cuda(); } function in class:cv::cuda 188 // multiply 196 void cv::cuda::multiply(InputArray _src1, InputArray _src2, OutputArray _dst, double scale, int dtype, Stream& stream)
|
/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/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417ECModulusGF.cpp | 111 int32_t CBC_PDF417ECModulusGF::multiply(int32_t a, int32_t b) {
function in class:CBC_PDF417ECModulusGF
|
/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
|
/external/replicaisland/src/com/replica/replicaisland/ |
Vector2.java | 55 public final void multiply(float magnitude) { method in class:Vector2 60 public final void multiply(Vector2 other) { method in class:Vector2
|