Home
last modified time | relevance | path

Searched full:product (Results 1 – 25 of 2408) sorted by relevance

12345678910>>...97

/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/
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 …]
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 …]
/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/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
DProduct.java26 * Returns the product of the available values.
38 public class Product extends AbstractStorelessUnivariateStatistic implements Serializable, Weighted… class
47 * The current Running Product.
52 * Create a Product instance
54 public Product() { in Product() method in Product
60 * Copy constructor, creates a new {@code Product} identical
63 * @param original the {@code Product} instance to copy
65 public Product(Product original) { in Product() method in Product
107 * Returns the product of the entries in the specified portion of
116 * @return the product of the values or Double.NaN if length = 0
[all …]
/external/opencv3/modules/objdetect/
Dopencl_kernels_objdetect.cpp792 "float product = 0.f;\n"
795 "product += coefs[i * cdescr_width + tid] *\n"
799 "products[tid] = product;\n"
801 "if (tid < 90) products[tid] = product = product + products[tid + 90];\n"
803 "if (tid < 45) products[tid] = product = product + products[tid + 45];\n"
807 "if (tid < 13) smem[tid] = product = product + smem[tid + 32];\n"
809 "if (tid < 16) smem[tid] = product = product + smem[tid + 16];\n"
811 "if(tid<8) smem[tid] = product = product + smem[tid + 8];\n"
813 "if(tid<4) smem[tid] = product = product + smem[tid + 4];\n"
815 "if(tid<2) smem[tid] = product = product + smem[tid + 2];\n"
[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/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
40 THAT THE USE OF THIS PRODUCT WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
43 USERS OF THIS PRODUCT FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL
[all …]
/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 …]
DTutorialMatrixArithmetic.dox15 linear-algebraic operations. For example, \c matrix1 \c * \c matrix2 means matrix-matrix product,
119 case of matrices, they are implicitly handled there too, so matrix-vector product is really just a …
120 case of matrix-matrix product, and so is vector-vector outer product. Thus, all these cases are han…
141 If you know your matrix product can be safely evaluated into the destination matrix without aliasin…
149 \section TutorialArithmeticDotAndCross Dot product and cross product
151product and cross product, you need the \link MatrixBase::dot() dot()\endlink and \link MatrixBase…
161 Remember that cross product is only for vectors of size 3. Dot product is for vectors of any sizes.
162 When using complex numbers, Eigen's dot product is conjugate-linear in the first variable and linea…
166 …alue such as the sum (computed by \link DenseBase::sum() sum()\endlink), product (\link DenseBase:…
207 v = m * v; // Run-time assertion failure here: "invalid matrix product"
DTopicLazyEvaluation.dox21 …atrix</tt> gives a wrong result if the matrix product is lazy-evaluated, because of the way matrix…
39 …portant example of such an expression is the \link GeneralProduct matrix product expression\endlin…
43 …th matrix products. It also doesn't cost much, as the cost of the matrix product itself is much hi…
45 What if you know that the result does no alias the operand of the product and want to force lazy ev…
51 …portant example of such an expression is the \link GeneralProduct matrix product expression\endlin…
55 the product <tt>matrix3 * matrix4</tt> gets evaluated immediately into a temporary matrix. Indeed, …
61product. Instead of computing the sum everytime, it is much better to compute it once and store it…
/external/nist-sip/java/gov/nist/javax/sip/parser/
DUserAgentParser.java83 * server-val = product / comment product = token [SLASH in parse()
84 * product-version] product-version = token in parse()
93 // product = token [SLASHproduct-version] in parse()
94 // product-version = token in parse()
100 String product = this.lexer.byteStringNoSlash(); in parse() local
101 if ( product == null ) throw createParseException("Expected product string"); in parse()
103 StringBuffer productSb = new StringBuffer(product); in parse()
104 // do we possibily have the optional product-version? in parse()
108 // product-version in parse()
114 … if ( productVersion == null ) throw createParseException("Expected product version"); in parse()
/external/ceres-solver/internal/ceres/
Dcompressed_row_sparse_matrix.cc394 // A ProductTerm is a term in the outer product of a matrix with
419 const vector<ProductTerm>& product, in CompressAndFillProgram() argument
421 CHECK_GT(product.size(), 0); in CompressAndFillProgram()
423 // Count the number of unique product term, which in turn is the in CompressAndFillProgram()
424 // number of non-zeros in the outer product. 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()
444 // Iterate over the sorted product terms. This means each row is in CompressAndFillProgram()
[all …]
/external/google-breakpad/src/tools/windows/symupload/
Dsymupload.cc39 // product: the HTTP-friendly product name, e.g. "MyApp"
159 L" symupload [--timeout NN] [--product product_name] ^\n" in printUsageAndExit()
163 wprintf(L" - product_name is an HTTP-friendly product name. It must only\n" in printUsageAndExit()
167 L" symupload.exe --timeout 0 --product Chrome ^\n" in printUsageAndExit()
173 const wchar_t *product = nullptr; in wmain() local
182 if (!wcscmp(L"--product", argv[currentarg])) { in wmain()
183 product = argv[currentarg + 1]; in wmain()
211 // Don't make a missing product name a hard error. Issue a warning and let in wmain()
212 // the server decide whether to reject files without product name. in wmain()
213 if (product) { in wmain()
[all …]
/external/autotest/client/cros/multimedia/
Dusb_facade_native.py55 The USB device is initially set to one with the default product name,
172 _device_product_name: The product name given to the USB device.
309 """Finds the bus ID of the USB device with the given product name.
311 @param product_name: The product name of the USB device as it appears
316 given product name.
320 """Checks if the product field matches expected product name.
322 @returns: True if the product name matches, False otherwise.
326 logging.debug('Read product at %s = %s', path, read_product_name)
329 # Find product field at these possible paths:
330 # '/sys/bus/usb/drivers/usb/usbX/X-Y/product' => bus id is X-Y.
[all …]
/external/eigen/Eigen/src/Core/
DGeneralProduct.h19 * \brief Expression of the product of two general matrices or vectors
23 * \param ProductMode the type of the product
25 * This class represents an expression of the product of two general matrices.
31 * function which involves a matrix product, use ProductReturnType::Type.
102 /* The following allows to select the kind of product at compile time
103 * based on the three dimensions of the product.
104 * This is a compile time mapping from {1,Small,Large}^3 -> {product types} */
138 * \param ProductMode the type of the product (determined automatically by internal::product_mode)
140 * This class defines the typename Type representing the optimized product expression
143 * which involve a matrix product. The class Product should never be
[all …]
/external/clang/test/CodeGenCXX/
Dtemp-order.cpp13 unsigned Product, Index; member
15 TempTracker() : Product(1), Index(0) {} in TempTracker()
30 TT.Product *= pow(P, ++TT.Index); in ~A()
53 return tt.Product; in f0()
65 return tt.Product; in f1()
77 return tt.Product; in f2()
91 return tt.Product; in f3()
103 return tt.Product; in f4()
117 return tt.Product; in f5()
129 return tt.Product; in f6()
[all …]
/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/nist-sip/java/gov/nist/javax/sip/header/
DServer.java27 * Product of NIST/ITL Advanced Networking Technologies Division (ANTD). *
53 /** Product tokens.
98 * Returns the list value of the product parameter.
110 * Sets the product value of the UserAgentHeader.
112 * @param product - a List specifying the product value
114 * unexpectedly while parsing the product value.
116 public void setProduct(List product) throws ParseException { in setProduct() argument
117 if (product == null) in setProduct()
121 + " product parameter is null"); in setProduct()
122 productTokens = product; in setProduct()
DUserAgent.java27 * Product of NIST/ITL Advanced Networking Technologies Division (ANTD). *
50 /** Product tokens.
93 * Returns the list value of the product parameter.
105 * Sets the product value of the UserAgentHeader.
107 * @param product - a List specifying the product value
109 * unexpectedly while parsing the product value.
111 public void setProduct(List product) throws ParseException { in setProduct() argument
112 if (product == null) in setProduct()
116 + " product parameter is null"); in setProduct()
117 productTokens = product; in setProduct()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
DupdateBugState.xml18 milestone, product and resolution correspond to the Bugzilla items of the same name
29 if you specify this, you cannot specify milestone or product
31 product - required (if no bugList), only query for bugs on this product
62 1. find all bugs last updated before 2006/06/01 17:38 from product EMF in the ASSIGNED state;
67 status="ASSIGNED" product="EMF" endDate="200606011738"
72 2. find all bugs from product EMF targetted for milestone "2.2" which are in the ASSIGNED state;
77 status="ASSIGNED" product="EMF"
/external/eigen/test/eigen2/
Deigen2_product_small.cpp11 #include "product.h"
16 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()
/external/curl/packages/vms/
Dbuild_gnv_curl_pcsi_text.com6 $! 1. Generated =product header section
58 $ product = f$element(2, "-", kit_name)
66 $ product_line = "=product ''producer' ''base' ''product'"
121 $ write ptxt "1 'PRODUCT"
122 $ write ptxt "=prompt ''producter' ''product' for OpenVMS"
167 "This software product is provided by ''producer_full_name' with no warranty."
183 $ write ptxt "This product requires OpenVMS ''vernum' or later to function."
186 $ write ptxt "This product requires ZLIB 1.2-8 or later to function."
188 $ write ptxt "=prompt Source modules for ''product'"
189 $ write ptxt "The Source modules for ''product' will be installed."
/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/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
DBigIntegerMath.java122 * Returns {@code n!}, that is, the product of the first {@code n} positive
147 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()
171 // If it won't fit in a long, then we store off the intermediate product. 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()
[all …]

12345678910>>...97