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

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 624 * multiply(new BigDecimal(String.valueOf(factor)))
631 * @see #multiply(BigDecimal)
633 public Duration multiply(int factor) { method in class:Duration
634 return multiply(BigDecimal.valueOf(factor));
660 * if you multiply "P1D" (1 day) with "0.5", then it will be 0.5 day,
672 * @param factor to multiply by
684 public abstract Duration multiply(final BigDecimal factor); method in class:Duration
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BlockFieldMatrix.java 503 outBlock[k] = tBlock[k].multiply(d);
513 public FieldMatrix<T> multiply(final FieldMatrix<T> m) method in class:BlockFieldMatrix
516 return multiply((BlockFieldMatrix<T>) m);
553 sum = sum.add(tBlock[l].multiply(m.getEntry(r, q)));
581 public BlockFieldMatrix<T> multiply(BlockFieldMatrix<T> m) throws IllegalArgumentException { method in class:BlockFieldMatrix
620 add(tBlock[l].multiply(mBlock[n])).
621 add(tBlock[l + 1].multiply(mBlock[n + jWidth])).
622 add(tBlock[l + 2].multiply(mBlock[n + jWidth2])).
623 add(tBlock[l + 3].multiply(mBlock[n + jWidth3]));
628 sum = sum.add(tBlock[l++].multiply(mBlock[n]))
    [all...]
SparseFieldVector.java 220 res = res.add(v.getEntry(iter.key()).multiply(iter.value()));
236 res = res.add(value.multiply(iter.value()));
273 res.setEntry(iter.key(), iter.value().multiply(v.getEntry(iter.key())));
285 res.setEntry(iter.key(), iter.value().multiply(v[iter.key()]));
386 entries.put(iter.key(), iter.value().multiply(d));
417 res.setEntry(iter.key(), iter2.key(), iter.value().multiply(iter2.value()));
433 res.setEntry(row, col, value.multiply(v[col]));
Array2DRowRealMatrix.java 254 public RealMatrix multiply(final RealMatrix m) method in class:Array2DRowRealMatrix
257 return multiply((Array2DRowRealMatrix) m);
259 return super.multiply(m);
270 public Array2DRowRealMatrix multiply(final Array2DRowRealMatrix m) method in class:Array2DRowRealMatrix
RealMatrixImpl.java 255 public RealMatrix multiply(final RealMatrix m) method in class:RealMatrixImpl
258 return multiply((RealMatrixImpl) m);
260 return super.multiply(m);
271 public RealMatrixImpl multiply(final RealMatrixImpl m) method in class:RealMatrixImpl
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECAlgorithms.java 44 return ps[0].multiply(ks[0]);
82 return validatePoint(P.multiply(a).add(Q.multiply(b)));
154 c[i] = c[i - 1].multiply(zs[off + i]);
161 c[i] = c[i].multiply(scale);
170 zs[j] = c[i].multiply(u);
171 u = u.multiply(tmp);
182 * The point to multiply.
  /external/opencv3/modules/ml/src/
lr.cpp 323 multiply(theta_b, theta_b, theta_c, 1);
344 multiply(d_a, _labels, d_a);
348 multiply(d_b, 1-_labels, d_b);
404 multiply(pcal_a, pcal_b, pcal_ab, 1);
415 multiply(pcal_a, pcal_b, pcal_ab, 1);
490 multiply(pcal_a, pcal_b, pcal_ab, 1);
499 multiply(pcal_a, pcal_b, pcal_ab, 1);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 381 multiply(d.mValues, a_mtx.mValues, b_mtx.mValues); method
827 multiply(tmp, mValues, matrix); method
838 multiply(tmp, matrix, mValues); method
921 * multiply two matrices and store them in a 3rd.
925 /*package*/ static void multiply(float dest[], float[] a, float[] b) { method in class:Matrix_Delegate
986 multiply(tmp2, tmp, getScale(sx, sy)); method
989 multiply(tmp, tmp2, getTranslate(px, py)); method
1041 multiply(tmp2, tmp, getRotate(sin, cos)); method
1044 multiply(tmp, tmp2, getTranslate(px, py)); method
1063 multiply(tmp2, tmp, new float[] { 1, kx, 0, ky, 1, 0, 0, 0, 1 }); method
1065 multiply(tmp, tmp2, getTranslate(px, py)); method
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DiagBigDecimal.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimal.java     [all...]
  /external/opencv3/modules/core/perf/
perf_arithm.cpp 206 PERF_TEST_P(Size_MatType, multiply, TYPICAL_MATS_CORE_ARITHM)
220 TEST_CYCLE() multiply(a, b, c);
241 TEST_CYCLE() multiply(a, b, c, scale);
  /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);
BigUnsignedInABase.cc 73 temp.multiply(ans, buBase);
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
RawConverter.java 315 multiply(sXYZtoProPhoto, sensorToXYZ, /*out*/sensorToProPhoto); method
320 multiply(sXYZtoRGBBradford, sProPhotoToXYZ, /*out*/proPhotoToSRGB); method
501 multiply(calibrationTransform1, colorMatrix1, /*out*/XYZToCamera1); method
502 multiply(calibrationTransform2, colorMatrix2, /*out*/XYZToCamera2); method
624 multiply(D, inverseInterpolatedCC, /*out*/intermediate2); method
625 multiply(intermediate, intermediate2, /*out*/outputTransform); method
642 * Multiply two 3x3 matrices together: A * B
647 private static void multiply(float[] a, float[] b, /*out*/float[] output) { method in class:RawConverter
792 multiply(m, forwardMatrix, \/*out*\/ intermediate); method
794 multiply(m2, intermediate, \/*out*\/forwardMatrix); method
    [all...]
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 80 multiply(*temp, *m);
90 multiply(*temp, *m);
100 multiply(*temp, *m);
106 void Matrix::multiply(const Matrix& l, const Matrix& r) { function in class:Matrix
  /external/e2fsprogs/po/
at-expand.pl 90 $msg =~ s/\@m/multiply-claimed/g;
  /external/llvm/include/llvm/IR/
ConstantRange.h 237 ConstantRange multiply(const ConstantRange &Other) const;
  /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/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
  /frameworks/base/rs/java/android/renderscript/
Matrix4f.java 354 * @param rhs right hand side to multiply by
356 public void multiply(Matrix4f rhs) { method in class:Matrix4f
373 multiply(tmp);
387 multiply(tmp);
401 multiply(tmp);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 355 * @param rhs right hand side to multiply by
357 public void multiply(Matrix4f rhs) { method in class:Matrix4f
374 multiply(tmp);
388 multiply(tmp);
402 multiply(tmp);
  /libcore/luni/src/test/java/libcore/java/math/
BigDecimalTest.java 71 BigDecimal b = a.multiply(BigDecimal.ONE);
  /frameworks/rs/api/
rs_matrix.spec 32 multiply the two source matrices, with the first transformation as the right
267 To apply this projection to a vector, multiply the vector by the created
288 summary: Multiply two matrices
292 To combine two 4x4 transformaton matrices, multiply the second transformation matrix
318 To apply this projection to a vector, multiply the vector by the created matrix
336 To apply this projection to a vector, multiply the vector by the created matrix
352 To rotate a vector, multiply the vector by the created matrix using @rsMatrixMultiply().
369 To scale a vector, multiply the vector by the created matrix using @rsMatrixMultiply().
384 To translate a vector, multiply the vector by the created matrix using
394 summary: Multiply a matrix by a vector or another matri
    [all...]
  /external/opencv3/modules/core/src/
matop.cpp 79 void multiply(const MatExpr& e1, double s, MatExpr& res) const;
99 void multiply(const MatExpr& e1, double s, MatExpr& res) const;
134 void multiply(const MatExpr& e, double s, MatExpr& res) const;
169 void multiply(const MatExpr& e1, double s, MatExpr& res) const;
200 void multiply(const MatExpr& e, double s, MatExpr& res) const;
413 void MatOp::multiply(const MatExpr& e1, const MatExpr& e2, MatExpr& res, double scale) const function in class:cv::MatOp
460 e2.op->multiply(e1, e2, res, scale);
464 void MatOp::multiply(const MatExpr& expr, double s, MatExpr& res) const function in class:cv::MatOp
665 op->multiply(*this, e, en, scale);
672 op->multiply(*this, MatExpr(m), e, scale)
1278 void MatOp_AddEx::multiply(const MatExpr& e, double s, MatExpr& res) const function in class:cv::MatOp_AddEx
1363 void MatOp_Bin::multiply(const MatExpr& e, double s, MatExpr& res) const function in class:cv::MatOp_Bin
1429 void MatOp_T::multiply(const MatExpr& e, double s, MatExpr& res) const function in class:cv::MatOp_T
1493 void MatOp_GEMM::multiply(const MatExpr& e, double s, MatExpr& res) const function in class:cv::MatOp_GEMM
1579 void MatOp_Initializer::multiply(const MatExpr& e, double s, MatExpr& res) const function in class:cv::MatOp_Initializer
    [all...]
  /cts/tests/openglperf2/test/
MatrixTest.cpp 117 m3.multiply(m1, m2);
126 m3.multiply(m1, m2);

Completed in 1998 milliseconds

1 2 3 4 5 67 8 91011>>