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

1 2 3 4 5 6 7 891011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealMatrix.java 81 * @param d value to multiply all entries by
94 RealMatrix multiply(RealMatrix m) throws IllegalArgumentException; method in interface:RealMatrix
    [all...]
SparseFieldMatrix.java 158 final T value = entries.get(key).multiply(factor);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP521R1Field.java 54 public static void multiply(int[] x, int[] y, int[] z) method in class:SecP521R1Field
  /external/curl/src/
tool_urlglob.c 62 /* multiply
66 static int multiply(unsigned long *amount, long with) function
112 if(multiply(amount, pat->content.Set.size+1))
226 if(multiply(amount, (pat->content.CharRange.max_c -
292 if(multiply(amount, (pat->content.NumRange.max_n -
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MinMaxPriorityQueueBenchmark.java 129 v = v.add(v.multiply(
  /external/opencv3/modules/cudaoptflow/src/
tvl1flow.cpp 245 cuda::multiply(u1s[s], Scalar::all(scaleStep_), u1s[s], 1, -1, stream);
246 cuda::multiply(u2s[s], Scalar::all(scaleStep_), u2s[s], 1, -1, stream);
290 cuda::multiply(u1s[s - 1], Scalar::all(1/scaleStep_), u1s[s - 1], 1, -1, stream);
291 cuda::multiply(u2s[s - 1], Scalar::all(1/scaleStep_), u2s[s - 1], 1, -1, stream);
  /external/opencv3/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/
ColorBlobDetector.java 99 Core.multiply(contour, new Scalar(4,4), contour);
  /external/webp/src/dsp/
alpha_processing.c 253 static WEBP_INLINE uint8_t multiply(uint8_t x, uint32_t m) { function
267 const uint8_t r = multiply(dither_hi(rg), mult);
268 const uint8_t g = multiply(dither_lo(rg), mult);
269 const uint8_t b = multiply(dither_hi(ba), mult);
  /frameworks/base/libs/hwui/
Program.cpp 173 t.multiply(modelViewMatrix);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MatrixUtils.java 120 * A matrix operation to multiply m0 and m1.
123 public static void multiply(final float[][] m0, final float[][] m1, method in class:MatrixUtils
127 "--- invalid length for multiply " + m0[0].length + ", " + m1.length);
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 60 BigDecimal picos = duration.multiply(ONE_IN_PICOS.get(unit));
238 BigDecimal product = BigDecimal.valueOf(picos).multiply(multiplicand);
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/
quat-spec.js 383 describe("multiply", function() {
384 it("should have an alias called 'mul'", function() { expect(quat.mul).toEqual(quat.multiply); });
387 beforeEach(function() { result = quat.multiply(out, quatA, quatB); });
396 beforeEach(function() { result = quat.multiply(quatA, quatA, quatB); });
404 beforeEach(function() { result = quat.multiply(quatB, quatA, quatB); });
vec4-spec.js 112 describe("multiply", function() {
113 it("should have an alias called 'mul'", function() { expect(vec4.mul).toEqual(vec4.multiply); });
116 beforeEach(function() { result = vec4.multiply(out, vecA, vecB); });
125 beforeEach(function() { result = vec4.multiply(vecA, vecA, vecB); });
133 beforeEach(function() { result = vec4.multiply(vecB, vecA, vecB); });
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
vec2.js 137 vec2.multiply = function(out, a, b) {
144 * Alias for {@link vec2.multiply}
147 vec2.mul = vec2.multiply;
  /external/fdlibm/
Android.mk 57 # floating point expession contraction (e.g: fused multiply-add operations).
  /external/llvm/include/llvm/ADT/
APFloat.h 55 /// multiply, divide, fused-multiply-add, conversion-to-float,
297 opStatus multiply(const APFloat &, roundingMode);
328 Result.multiply(RHS, rmNearestTiesToEven);
  /external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
BC_ReedSolomonDecoder.cpp 135 m_field->Multiply(r->GetCoefficients(r->GetDegree()), dltInverse);
147 CBC_AutoPtr<CBC_ReedSolomonGF256Poly> multiply(rsgp3);
148 CBC_ReedSolomonGF256Poly* rsgp4 = r->AddOrSubtract(multiply.get(), e);
153 CBC_ReedSolomonGF256Poly* rsg9 = q->Multiply(sLast.get(), e);
160 CBC_ReedSolomonGF256Poly* rsg11 = q->Multiply(tLast.get(), e);
175 CBC_ReedSolomonGF256Poly* rsg13 = t->Multiply(inverse, e);
178 CBC_ReedSolomonGF256Poly* rsg14 = r->Multiply(inverse, e);
227 denominator = m_field->Multiply(
229 1, m_field->Multiply(errorLocations->operator[](j),
236 m_field->Multiply(errorEvaluator->EvaluateAt(xiInverse), temp);
    [all...]
  /external/v8/test/mjsunit/compiler/
multiply-add.js 29 // Test expressions that can be computed with a multiply-add instruction.
  /external/v8/test/mjsunit/regress/
regress-1117.js 30 // Test that we actually return the right value (-0) when we multiply
  /external/v8/test/webkit/
dfg-multiply.js 25 "This tests that the DFG can multiply numbers correctly."
  /external/opencv3/modules/cudaarithm/test/
test_element_operations.cpp 694 cv::cuda::multiply(loadMat(mat1), loadMat(mat2), dst, 1, depth.second);
704 cv::cuda::multiply(loadMat(mat1, useRoi), loadMat(mat2, useRoi), dst, 1, depth.second);
707 cv::multiply(mat1, mat2, dst_gold, 1, depth.second);
724 cv::cuda::multiply(loadMat(mat1), loadMat(mat2), dst, scale, depth.second);
734 cv::cuda::multiply(loadMat(mat1, useRoi), loadMat(mat2, useRoi), dst, scale, depth.second);
737 cv::multiply(mat1, mat2, dst_gold, scale, depth.second);
775 cv::cuda::multiply(loadMat(mat1, useRoi), loadMat(mat2, useRoi), dst);
812 cv::cuda::multiply(loadMat(mat1, useRoi), loadMat(mat2, useRoi), dst);
879 cv::cuda::multiply(loadMat(mat), val, dst, 1, depth.second);
889 cv::cuda::multiply(loadMat(mat, useRoi), val, dst, 1, depth.second)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 137 private static final String MULTIPLY_TRAP = "multiply";
302 xdfp = xdfp.multiply(DfpMath.pow(field.getTwo(), exponent));
942 final Dfp result = this.subtract(this.divide(d).rint().multiply(d));
1409 public Dfp multiply(final Dfp x) { method in class:Dfp
1516 public Dfp multiply(final int x) { method in class:Dfp
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalTest.java 501 * @tests java.math.BigDecimal#multiply(java.math.BigDecimal)
506 BigDecimal result = multi1.multiply(multi2);
512 result = multi1.multiply(multi2);
518 result = multi1.multiply(multi2);
524 result = multi1.multiply(multi2);
529 result = multi1.multiply(multi2);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastFourierTransformer.java 329 //Complex D = roots.getOmega(i).multiply(Complex.I);
332 F[i] = B.subtract(C.multiply(D));
381 final Complex e1 = c.add(d.multiply(Complex.I));
382 final Complex e2 = c.subtract(d.multiply(Complex.I));
395 //z = f[i+j+k].multiply(roots.getOmega(k*m));
399 //z = f[i+j+k].multiply(omega[k*m]);
449 * Multiply every component in the given real array by the
464 * Multiply every component in the given complex array by the
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 213 CR x2 = x.multiply(x);
463 BigInteger t = arg_difference.multiply(difference);
474 } else if (adj.compareTo(difference.multiply(BIG1023)

Completed in 2118 milliseconds

1 2 3 4 5 6 7 891011>>