/external/chromium_org/v8/test/mjsunit/regress/ |
H A D | regress-351624.js | 11 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 D | SkMathPriv.h | 50 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/skia/src/core/ |
H A D | SkMathPriv.h | 50 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 D | MatrixBase_prod.cpp | 3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
|
H A D | PartialRedux_prod.cpp | 3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
|
/external/chromium_org/chrome/browser/omaha_query_params/ |
H A D | omaha_query_params.h | 23 // prod, prodchannel, prodversion, lang. 24 static std::string Get(ProdId prod); 26 // Returns the value we use for the "prod=" parameter. Possible return values 28 static const char* GetProdIdString(chrome::OmahaQueryParams::ProdId prod);
|
H A D | omaha_query_params.cc | 69 std::string OmahaQueryParams::Get(ProdId prod) { argument 71 "os=%s&arch=%s&nacl_arch=%s&prod=%s&prodchannel=%s" 76 GetProdIdString(prod), 84 chrome::OmahaQueryParams::ProdId prod) { 85 switch (prod) { 83 GetProdIdString( chrome::OmahaQueryParams::ProdId prod) argument
|
/external/chromium_org/v8/test/mjsunit/es6/ |
H A D | math-log1p.js | 28 var prod = x; 30 terms.push(prod / i); 31 prod *= -x;
|
/external/chromium_org/third_party/skia/src/opts/ |
H A D | SkColor_opts_SSE2.h | 35 __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 D | SkColor_opts_SSE2.h | 35 __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 D | filters.c | 27 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 D | filters.c | 37 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 D | accum_test.cpp | 44 int prod = accumulate(v.begin(), v.end(), 1, mult); local 45 CPPUNIT_ASSERT(prod==120);
|
/external/eigen/doc/examples/ |
H A D | tut_arithmetic_redux_basic.cpp | 11 cout << "Here is mat.prod(): " << mat.prod() << endl;
|
/external/chromium_org/v8/test/mjsunit/ |
H A D | array-reduce.js | 101 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 D | ublas_interface.hh | 92 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 D | SkMath.h | 192 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 D | SkMath.h | 192 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 D | zorro.h | 35 #define ZORRO_ID(manuf, prod, epc) \ 36 ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
|
/external/valgrind/main/drd/tests/ |
H A D | matinv.c | 143 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 D | omp_matinv.c | 131 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 D | ProductBase.h | 198 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 D | GeneralProduct.h | 228 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 D | tvmet_interface.hh | 86 X = prod(A,B); 90 X = prod(A,B); 94 X = prod(trans(A),B);
|
/external/mdnsresponder/Clients/ |
H A D | Makefile | 33 LIBS = -L../mDNSPosix/build/prod/ -ldns_sd
|