Searched refs:prod (Results 1 - 25 of 99) sorted by relevance

1234

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-351624.js11 var prod = val * big;
12 backup[0] = prod;
13 var rounded = Math.round(prod);
14 assertEquals(prod, backup[0]);
/external/chromium_org/third_party/skia/src/core/
H A DSkMathPriv.h56 unsigned prod = SkMulS16(a, b) + 1; local
57 return (prod + (prod >> 8)) >> 8;
66 unsigned prod = SkMulS16(a, b) + 255; local
67 return (prod + (prod >> 8)) >> 8;
72 static inline unsigned SkDiv255Round(unsigned prod) { argument
73 prod += 128;
74 return (prod + (prod >>
[all...]
/external/skia/src/core/
H A DSkMathPriv.h50 unsigned prod = SkMulS16(a, b) + 1; local
51 return (prod + (prod >> 8)) >> 8;
60 unsigned prod = SkMulS16(a, b) + 255; local
61 return (prod + (prod >> 8)) >> 8;
66 static inline unsigned SkDiv255Round(unsigned prod) { argument
67 prod += 128;
68 return (prod + (prod >>
[all...]
/external/eigen/doc/snippets/
H A DMatrixBase_prod.cpp3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
H A DPartialRedux_prod.cpp3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
/external/chromium_org/components/omaha_query_params/
H A Domaha_query_params.h29 // following fields: "os", "arch", "nacl_arch", "prod", "prodchannel",
31 static std::string Get(ProdId prod);
33 // Returns the value we use for the "prod=" parameter. Possible return values
35 static const char* GetProdIdString(ProdId prod);
H A Domaha_query_params.cc66 std::string OmahaQueryParams::Get(ProdId prod) { argument
68 "os=%s&arch=%s&nacl_arch=%s&prod=%s%s",
72 GetProdIdString(prod),
77 const char* OmahaQueryParams::GetProdIdString(OmahaQueryParams::ProdId prod) { argument
78 switch (prod) {
/external/chromium_org/third_party/skia/src/opts/
H A DSkColor_opts_SSE2.h35 __m128i prod = _mm_mullo_epi16(a, b); local
36 prod = _mm_add_epi32(prod, _mm_set1_epi32(128));
37 prod = _mm_add_epi32(prod, _mm_srli_epi32(prod, 8));
38 prod = _mm_srli_epi32(prod, 8);
40 return prod;
86 __m128i prod local
[all...]
/external/skia/src/opts/
H A DSkColor_opts_SSE2.h35 __m128i prod = _mm_mullo_epi16(a, b); local
36 prod = _mm_add_epi32(prod, _mm_set1_epi32(128));
37 prod = _mm_add_epi32(prod, _mm_srli_epi32(prod, 8));
38 prod = _mm_srli_epi32(prod, 8);
40 return prod;
86 __m128i prod local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c27 int64_t prod = 0; local
35 prod += WEBRTC_SPL_MUL_16_16(x[i], x[i]);
39 temp = (uint32_t)(prod >> 31);
45 r[0] = (int32_t)(prod >> scaling);
49 prod = 0;
51 prod += WEBRTC_SPL_MUL_16_16(x[j], x[i + j]);
53 sum = (int32_t)(prod >> scaling);
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c37 int64_t prod = 0; local
41 prod += WEBRTC_SPL_MUL_16_16(x[i], x[i]);
45 temp = (uint32_t)(prod >> 31);
51 r[0] = (int32_t)(prod >> scaling);
55 prod = 0;
57 prod += WEBRTC_SPL_MUL_16_16(x[j], x[i + j]);
59 sum = (int32_t)(prod >> scaling);
/external/stlport/test/unit/
H A Daccum_test.cpp44 int prod = accumulate(v.begin(), v.end(), 1, mult); local
45 CPPUNIT_ASSERT(prod==120);
/external/eigen/doc/examples/
H A Dtut_arithmetic_redux_basic.cpp11 cout << "Here is mat.prod(): " << mat.prod() << endl;
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-log1p.js26 var prod = x;
28 terms.push(prod / i);
29 prod *= -x;
/external/chromium_org/v8/test/mjsunit/
H A Darray-reduce.js101 function prod(a, b) { return a * b; } function
119 simpleArray, prod, 1);
135 testReduce("reduce", "EmptyReduceProd", 1, [], [], prod, 1);
140 testReduce("reduce", "EmptyReduceProdNoInit", 1, [], [1], prod);
156 simpleSparseArray, prod, 1);
172 testReduce("reduce", "EmptySparseReduceProdNoInit", 1, [], [,,1,,], prod);
197 verySparseArray, prod, 1);
221 verySparseArray, prod);
247 simpleArray, prod, 1);
263 testReduce("reduceRight", "EmptyReduceRightProd", 1, [], [], prod,
[all...]
/external/eigen/bench/btl/libs/ublas/
H A Dublas_interface.hh92 X = prod(A,B);
96 X = prod(A,B);
106 X.assign(prod(A,B));
110 X.assign(prod(trans(A),B));
114 X.assign(prod(A,B));
126 // X = prod(trans(A),A);
127 X.assign(prod(trans(A),A));
131 // X = prod(A,trans(A));
132 X.assign(prod(A,trans(A)));
/external/chromium_org/third_party/skia/include/core/
H A DSkMath.h192 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
193 return (prod + (prod >> shift)) >> shift;
203 unsigned prod = SkMulS16(a, b) + 128; local
204 return (prod + (prod >> 8)) >> 8;
/external/skia/include/core/
H A DSkMath.h192 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
193 return (prod + (prod >> shift)) >> shift;
203 unsigned prod = SkMulS16(a, b) + 128; local
204 return (prod + (prod >> 8)) >> 8;
/external/kernel-headers/original/uapi/linux/
H A Dzorro.h35 #define ZORRO_ID(manuf, prod, epc) \
36 ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
/external/valgrind/main/drd/tests/
H A Dmatinv.c143 elem_t* prod; local
147 prod = new_matrix(rows1, cols2);
152 prod[i * cols2 + j] = 0;
155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
159 return prod;
316 elem_t *a, *inv, *prod; local
348 prod = multiply_matrices(a, matrix_size, matrix_size,
350 error = identity_error(prod, matrix_size);
361 delete_matrix(prod);
H A Domp_matinv.c131 elem_t* prod; local
135 prod = new_matrix(rows1, cols2);
140 prod[i * cols2 + j] = 0;
143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
147 return prod;
292 elem_t *a, *inv, *prod; local
328 prod = multiply_matrices(a, matrix_size, matrix_size,
330 error = identity_error(prod, matrix_size);
341 delete_matrix(prod);
/external/eigen/Eigen/src/Core/
H A DProductBase.h198 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, const typename Derived::Scalar& x) argument
199 { return ScaledProduct<Derived>(prod.derived(), x); }
204 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, const typename Derived::RealScalar& x) argument
205 { return ScaledProduct<Derived>(prod.derived(), x); }
210 operator*(const typename Derived::Scalar& x,const ProductBase<Derived,Lhs,Rhs>& prod) argument
211 { return ScaledProduct<Derived>(prod.derived(), x); }
216 operator*(const typename Derived::RealScalar& x,const ProductBase<Derived,Lhs,Rhs>& prod) argument
217 { return ScaledProduct<Derived>(prod.derived(), x); }
244 ScaledProduct(const NestedProduct& prod, const Scalar& x) argument
245 : Base(prod
[all...]
H A DGeneralProduct.h228 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const false_type&) argument
235 func(dest.col(j), prod.rhs().coeff(j) * prod.lhs());
240 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const true_type&) { argument
246 func(dest.row(i), prod.lhs().coeff(i) * prod.rhs());
360 static void run(const ProductType& prod, Dest& dest, const typename ProductType::Scalar& alpha) argument
366 (prod.rhs().transpose(), prod.lhs().transpose()), destT, alpha);
409 static inline void run(const ProductType& prod, Des argument
482 run(const ProductType& prod, Dest& dest, const typename ProductType::Scalar& alpha) argument
533 run(const ProductType& prod, Dest& dest, const typename ProductType::Scalar& alpha) argument
546 run(const ProductType& prod, Dest& dest, const typename ProductType::Scalar& alpha) argument
[all...]
/external/eigen/bench/btl/libs/tvmet/
H A Dtvmet_interface.hh86 X = prod(A,B);
90 X = prod(A,B);
94 X = prod(trans(A),B);
/external/mdnsresponder/Clients/
H A DMakefile33 LIBS = -L../mDNSPosix/build/prod/ -ldns_sd

Completed in 1455 milliseconds

1234