Home
last modified time | relevance | path

Searched refs:product (Results 1 – 25 of 606) sorted by relevance

12345678910>>...25

/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/
Djdk7-flags.txt1 bool AHRByDeathCollectTimeRatio = false {product}
2 bool AHRByMinorPauseTimeMajorFreq = false {product}
3 bool AHRByPromoToAllocRatio = false {product}
4 bool AHRBySurvivorAge = false {product}
5 uintx AHRIncrementSize = 5242880 {product}
6 uintx AHRMaxDeathCollectTimeRatio = 55 {product}
7 uintx AHRMaxMinorInvocationsPerMajor = 30 {product}
8 uintx AHRMaxMinorPauseTimeMillis = 100 {product}
9 uintx AHRMaxPromoToAllocRatio = 25 {product}
10 uintx AHRMaxRatio = 100 {product}
[all …]
Djdk6-flags.txt1 bool AHRByDeathCollectTimeRatio = false {product}
2 bool AHRByMinorPauseTimeMajorFreq = false {product}
3 bool AHRByPromoToAllocRatio = false {product}
4 bool AHRBySurvivorAge = false {product}
5 uintx AHRIncrementSize = 5242880 {product}
6 uintx AHRMaxDeathCollectTimeRatio = 55 {product}
7 uintx AHRMaxMinorInvocationsPerMajor = 30 {product}
8 uintx AHRMaxMinorPauseTimeMillis = 100 {product}
9 uintx AHRMaxPromoToAllocRatio = 25 {product}
10 uintx AHRMaxRatio = 100 {product}
[all …]
/external/v8/test/cctest/
Dtest-diy-fp.cc56 DiyFp product = DiyFp::Times(diy_fp1, diy_fp2); in TEST() local
58 CHECK(0 == product.f()); // NOLINT in TEST()
59 CHECK_EQ(64, product.e()); in TEST()
66 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST()
67 CHECK(1 == product.f()); // NOLINT in TEST()
68 CHECK_EQ(11 + 13 + 64, product.e()); in TEST()
73 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST()
74 CHECK(1 == product.f()); // NOLINT in TEST()
75 CHECK_EQ(11 + 13 + 64, product.e()); in TEST()
79 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST()
[all …]
/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl305 float product = 0.f;
309 product += coefs[i * cdescr_width + tid] *
315 products[tid] = product;
319 if (tid < 90) products[tid] = product = product + products[tid + 90];
322 if (tid < 45) products[tid] = product = product + products[tid + 45];
327 if (tid < 13) smem[tid] = product = product + smem[tid + 32];
329 if (tid < 16) smem[tid] = product = product + smem[tid + 16];
331 if(tid<8) smem[tid] = product = product + smem[tid + 8];
333 if(tid<4) smem[tid] = product = product + smem[tid + 4];
335 if(tid<2) smem[tid] = product = product + smem[tid + 2];
[all …]
/external/svox/pico/lang/
Dall_pico_languages.mk17 $(call inherit-product, external/svox/pico/lang/PicoLangDeDeInSystem.mk)
18 $(call inherit-product, external/svox/pico/lang/PicoLangEnGBInSystem.mk)
19 $(call inherit-product, external/svox/pico/lang/PicoLangEnUsInSystem.mk)
20 $(call inherit-product, external/svox/pico/lang/PicoLangEsEsInSystem.mk)
21 $(call inherit-product, external/svox/pico/lang/PicoLangFrFrInSystem.mk)
22 $(call inherit-product, external/svox/pico/lang/PicoLangItItInSystem.mk)
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
DProduct.java122 double product = Double.NaN; in evaluate() local
124 product = 1.0; in evaluate()
126 product *= values[i]; in evaluate()
129 return product; in evaluate()
162 double product = Double.NaN; in evaluate() local
164 product = 1.0; in evaluate()
166 product *= FastMath.pow(values[i], weights[i]); in evaluate()
169 return product; in evaluate()
/external/eigen/test/eigen2/
Deigen2_product_small.cpp16 CALL_SUBTEST_1( product(Matrix<float, 3, 2>()) ); in test_eigen2_product_small()
17 CALL_SUBTEST_2( product(Matrix<int, 3, 5>()) ); in test_eigen2_product_small()
18 CALL_SUBTEST_3( product(Matrix3d()) ); in test_eigen2_product_small()
19 CALL_SUBTEST_4( product(Matrix4d()) ); in test_eigen2_product_small()
20 CALL_SUBTEST_5( product(Matrix4f()) ); in test_eigen2_product_small()
Deigen2_product_large.cpp15 CALL_SUBTEST_1( product(MatrixXf(ei_random<int>(1,320), ei_random<int>(1,320))) ); in test_eigen2_product_large()
16 CALL_SUBTEST_2( product(MatrixXd(ei_random<int>(1,320), ei_random<int>(1,320))) ); in test_eigen2_product_large()
17 CALL_SUBTEST_3( product(MatrixXi(ei_random<int>(1,320), ei_random<int>(1,320))) ); in test_eigen2_product_large()
18 CALL_SUBTEST_4( product(MatrixXcf(ei_random<int>(1,50), ei_random<int>(1,50))) ); in test_eigen2_product_large()
19 …CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<in… in test_eigen2_product_large()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
Dmatrix-interpolation.js109 var product = scope.dot(fromQ, toQ);
110 product = clamp(product, -1.0, 1.0);
113 if (product === 1.0) {
116 var theta = Math.acos(product);
117 var w = Math.sin(f * theta) * 1 / Math.sqrt(1 - product * product);
120 quat.push(fromQ[i] * (Math.cos(f * theta) - product * w) +
/external/mp4parser/isoparser/src/main/resources/
DNOTICE.txt7 This product includes software developed by
10 This product includes software developed by
13 This product includes software developed by
16 This product includes software (Base64 Encoder extracted from commons-codec) developed by
19 This product includes software (Hex Encoder extracted from commons-codec) developed by
22 This product includes software (package com.googlecode.mp4parser.h264) developed by
/external/mp4parser/
DNOTICE7 This product includes software developed by
10 This product includes software developed by
13 This product includes software developed by
16 This product includes software (Base64 Encoder extracted from commons-codec) developed by
19 This product includes software (Hex Encoder extracted from commons-codec) developed by
22 This product includes software (package com.googlecode.mp4parser.h264) developed by
/external/ceres-solver/internal/ceres/
Dcompressed_row_sparse_matrix.cc419 const vector<ProductTerm>& product, in CompressAndFillProgram() argument
421 CHECK_GT(product.size(), 0); in CompressAndFillProgram()
426 for (int i = 1; i < product.size(); ++i) { in CompressAndFillProgram()
427 if (product[i].row != product[i - 1].row || in CompressAndFillProgram()
428 product[i].col != product[i - 1].col) { in CompressAndFillProgram()
442 program->resize(product.size()); in CompressAndFillProgram()
452 crsm_cols[0] = product[0].col; in CompressAndFillProgram()
453 crsm_rows[product[0].row + 1]++; in CompressAndFillProgram()
454 (*program)[product[0].index] = nnz; in CompressAndFillProgram()
455 for (int i = 1; i < product.size(); ++i) { in CompressAndFillProgram()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
DBigIntegerMath.java147 long product = LongMath.factorials[startingNumber - 1]; in factorial() local
149 int shift = Long.numberOfTrailingZeros(product); in factorial()
150 product >>= shift; in factorial()
153 int productBits = LongMath.log2(product, FLOOR) + 1; in factorial()
173 bignums.add(BigInteger.valueOf(product)); in factorial()
174 product = 1; in factorial()
177 product *= normalizedNum; in factorial()
178 productBits = LongMath.log2(product, FLOOR) + 1; in factorial()
181 if (product > 1) { in factorial()
182 bignums.add(BigInteger.valueOf(product)); in factorial()
/external/eigen/test/
Dproduct_small.cpp35 CALL_SUBTEST_1( product(Matrix<float, 3, 2>()) ); in test_product_small()
36 CALL_SUBTEST_2( product(Matrix<int, 3, 5>()) ); in test_product_small()
37 CALL_SUBTEST_3( product(Matrix3d()) ); in test_product_small()
38 CALL_SUBTEST_4( product(Matrix4d()) ); in test_product_small()
39 CALL_SUBTEST_5( product(Matrix4f()) ); in test_product_small()
Dproduct_large.cpp15 …CALL_SUBTEST_1( product(MatrixXf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<in… in test_product_large()
16 …CALL_SUBTEST_2( product(MatrixXd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<in… in test_product_large()
17 …CALL_SUBTEST_3( product(MatrixXi(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<in… in test_product_large()
18 …CALL_SUBTEST_4( product(MatrixXcf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2), internal::random… in test_product_large()
19 …CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_… in test_product_large()
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
DBC_ReedSolomonGF256Poly.cpp152 CFX_Int32Array product; in Multiply() local
153 product.SetSize(aLength + bLength - 1); in Multiply()
157 product[i + j] = CBC_ReedSolomonGF256::AddOrSubtract( in Multiply()
158 product[i + j], in Multiply()
163 temp->Init(m_field, &product, e); in Multiply()
179 CFX_Int32Array product; in Multiply() local
180 product.SetSize(size); in Multiply()
182 product[i] = m_field->Multiply(m_coefficients[i], scalar); in Multiply()
185 temp->Init(m_field, &product, e); in Multiply()
203 CFX_Int32Array product; in MultiplyByMonomial() local
[all …]
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417ECModulusPoly.cpp164 CFX_Int32Array product; in multiply() local
165 product.SetSize(aLength + bLength - 1); in multiply()
169 product[i + j] = m_field->add( in multiply()
170 product[i + j], m_field->multiply(aCoeff, bCoefficients[j])); in multiply()
173 modulusPoly = new CBC_PDF417ECModulusPoly(m_field, product, e); in multiply()
205 CFX_Int32Array product; in multiply() local
206 product.SetSize(size); in multiply()
208 product[i] = m_field->multiply(m_coefficients[i], scalar); in multiply()
210 modulusPoly = new CBC_PDF417ECModulusPoly(m_field, product, e); in multiply()
230 CFX_Int32Array product; in multiplyByMonomial() local
[all …]
/external/chromium-trace/catapult/telemetry/third_party/pyserial/
DLICENSE.txt4 This is the Python license. In short, you can use this product in
16 product, and the Individual or Organization ("Licensee") accessing
17 and otherwise using this product in source or binary form and its
24 and otherwise use this product alone or in any derivative version,
26 copyright holders notice of copyright are retained in this product
30 or incorporates this product or any part thereof, and wants to make
33 the changes made to this product.
35 4. The copyright holder is making this product available to Licensee on
58 8. By copying, installing or otherwise using this product, Licensee
/external/libmtp/examples/
Dhotplug.c122 printf("# %s %s\n", entry->vendor, entry->product); in main()
130 printf("# %s %s\n", entry->vendor, entry->product); in main()
134 printf(" <!-- %s %s -->\n", entry->vendor, entry->product); in main()
142 … printf(" <merge key=\"info.product\" type=\"string\">%s</merge>\n", entry->product); in main()
172 printf("\t%04x %s %s\n", entry->product_id, entry->vendor, entry->product); in main()
190 printf("# %s %s\n", entry->vendor, entry->product); in main()
/external/eigen/doc/
DHiPerformance.dox4 /** \page TopicWritingEfficientProductExpression Writing efficient matrix product expressions
12 and evaluate complex product expressions, and discuss the current limitations.
23 \section GEMM General Matrix-Matrix product (GEMM)
25 Let's start with the most common primitive: the matrix product of general dense matrices.
31 When Eigen detects a matrix product, it analyzes both sides of the product to extract a
61 Otherwise the product m2 * m3 is evaluated into a temporary.</td>
68 <td>This is a special feature of Eigen. Here the product between a scalar
69 and a matrix product does not evaluate the matrix product but instead it
70 returns a matrix product expression tracking the scalar scaling factor. <br>
71 Without this optimization, the matrix product would be evaluated into a
[all …]
/external/google-breakpad/src/common/linux/
Dgoogle_crashdump_uploader.cc43 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, in GoogleCrashdumpUploader() argument
55 Init(product, in GoogleCrashdumpUploader()
69 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, in GoogleCrashdumpUploader() argument
81 Init(product, in GoogleCrashdumpUploader()
95 void GoogleCrashdumpUploader::Init(const string& product, in Init() argument
107 product_ = product; in Init()
/external/deqp/modules/gles31/functional/
Des31fShaderAtomicOpTests.cpp57 static inline T product (const tcu::Vector<T, Size>& v) in product() function
123 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups); in init()
134 …coherent " : "") << precName << " " << outTypeName << " groupValues[" << product(m_numWorkGroups) … in init()
203 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups); in iterate()
207 groupVarInfo.arraySize == product(m_numWorkGroups)); in iterate()
220 for (deUint32 valNdx = 0; valNdx < product(m_numWorkGroups); valNdx++) in iterate()
279 const int workGroupSize = (int)product(m_workGroupSize); in verify()
432 const int workGroupSize = (int)product(m_workGroupSize); in verify()
514 const int workGroupSize = (int)product(m_workGroupSize); in verify()
588 const int workGroupSize = (int)product(m_workGroupSize); in getInputs()
[all …]
/external/guava/guava/src/com/google/common/math/
DBigIntegerMath.java330 long product = LongMath.factorials[startingNumber - 1]; in factorial() local
332 int shift = Long.numberOfTrailingZeros(product); in factorial()
333 product >>= shift; in factorial()
336 int productBits = LongMath.log2(product, FLOOR) + 1; in factorial()
356 bignums.add(BigInteger.valueOf(product)); in factorial()
357 product = 1; in factorial()
360 product *= normalizedNum; in factorial()
361 productBits = LongMath.log2(product, FLOOR) + 1; in factorial()
364 if (product > 1) { in factorial()
365 bignums.add(BigInteger.valueOf(product)); in factorial()
/external/eigen/bench/btl/data/
Daction_settings.txt6 matrix_matrix ; "{/*1.5 matrix matrix product}" ; "matrix size" ; 4:3000
7 matrix_vector ; "{/*1.5 matrix vector product}" ; "matrix size" ; 4:3000
8 trmm ; "{/*1.5 triangular matrix matrix product}" ; "matrix size" ; 4:3000
16 symv ; "{/*1.5 symmetric matrix vector product}" ; "matrix size" ; 4:3000
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
DExpressionParser.java50 IExpression e = product(); in term()
53 e = new Add(e, product()); in term()
55 e = new Sub(e, product()); in term()
62 private IExpression product() throws IOException { in product() method in ExpressionParser

12345678910>>...25