Searched defs:product (Results 1 - 25 of 77) sorted by relevance

1234

/external/v8/test/cctest/
H A Dtest-diy-fp.cc56 DiyFp product = DiyFp::Times(diy_fp1, diy_fp2); local
58 CHECK(0 == product.f()); // NOLINT
59 CHECK_EQ(64, product.e());
66 product = DiyFp::Times(diy_fp1, diy_fp2);
67 CHECK(1 == product.f()); // NOLINT
68 CHECK_EQ(11 + 13 + 64, product.e());
73 product = DiyFp::Times(diy_fp1, diy_fp2);
74 CHECK(1 == product.f()); // NOLINT
75 CHECK_EQ(11 + 13 + 64, product.e());
79 product
[all...]
/external/nist-sip/java/javax/sip/header/
H A DServerHeader.java11 void setProduct(List product) throws ParseException; argument
H A DUserAgentHeader.java11 void setProduct(List product) throws ParseException; argument
/external/opencv3/modules/core/perf/
H A Dperf_dot.cpp26 double product; local
28 TEST_CYCLE_N(1000) product = a.dot(b);
30 SANITY_CHECK(product, 1e-6, ERROR_RELATIVE);
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
H A DExpressionParser.java50 IExpression e = product();
53 e = new Add(e, product());
55 e = new Sub(e, product());
62 private IExpression product() throws IOException { method in class:ExpressionParser
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DServer.java98 * 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 { argument
117 if (product == null)
121 + " product parameter is null");
122 productTokens = product;
H A DUserAgent.java93 * 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 { argument
112 if (product == null)
116 + " product parameter is null");
117 productTokens = product;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DInvoice.java25 public List<Product> product; field in class:Invoice
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dfuzzy.py24 """Define possible score aggregators: average() and product().
36 def product(data): function
37 """The product of the elements in data."""
/external/google-breakpad/src/tools/linux/symupload/
H A Dminidump_upload.cc33 // prod: the product name
34 // ver: the product version
51 string product; member in struct:Options
62 parameters["prod"] = options->product;
92 fprintf(stderr, "Usage: %s [options...] -p <product> -v <version> <minidump> "
98 fprintf(stderr, "-p:\t <product> Product name\n");
115 options->product = optarg;
/external/kernel-headers/original/uapi/linux/
H A Dhidraw.h29 __s16 product; member in struct:hidraw_devinfo
H A Dvirtio_input.h53 __u16 product; member in struct:virtio_input_devids
/external/v8/src/runtime/
H A Druntime-numbers.cc219 int32_t product = static_cast<int32_t>(x * y); local
220 return *isolate->factory()->NewNumberFromInt(product);
/external/clang/test/Parser/
H A Dcxx1z-fold-expressions.cpp4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
/external/clang/test/SemaTemplate/
H A Dcxx1z-fold-expressions.cpp4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
9 static_assert(product(1, 2, 3, 4, 5) == 120);
/external/eigen/test/eigen2/
H A Dproduct.h21 template<typename MatrixType> void product(const MatrixType& m) function
111 // test submatrix and matrix/vector product
/external/eigen/test/
H A Dproduct.h20 template<typename MatrixType> void product(const MatrixType& m) function
119 // test submatrix and matrix/vector product
139 // inner product
143 // outer product
/external/v8/test/mjsunit/
H A Dtop-level-assignments.js89 Calculator.prototype.product = function() { return this.x * this.y; };
95 assertEquals(200, calc.product());
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DStatUtils.java148 * Returns the product of the entries in the input array, or
154 * @return the product of the values or Double.NaN if the array is empty
157 public static double product(final double[] values) { method in class:StatUtils
162 * Returns the product of the entries in the specified portion of
171 * @return the product of the values or Double.NaN if length = 0
175 public static double product(final double[] values, final int begin, method in class:StatUtils
/external/google-breakpad/src/common/linux/
H A Dgoogle_crashdump_uploader.cc43 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, argument
55 Init(product,
69 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, argument
81 Init(product,
95 void GoogleCrashdumpUploader::Init(const string& product, argument
107 product_ = product;
/external/google-breakpad/src/tools/windows/symupload/
H A Dsymupload.cc39 // product: the HTTP-friendly product name, e.g. "MyApp"
159 L" symupload [--timeout NN] [--product product_name] ^\n"
163 wprintf(L" - product_name is an HTTP-friendly product name. It must only\n"
167 L" symupload.exe --timeout 0 --product Chrome ^\n"
173 const wchar_t *product = nullptr; local
182 if (!wcscmp(L"--product", argv[currentarg])) {
183 product = argv[currentarg + 1];
211 // Don't make a missing product name a hard error. Issue a warning and let
212 // the server decide whether to reject files without product nam
[all...]
/external/webrtc/talk/media/webrtc/
H A Dfakewebrtcdeviceinfo.h43 std::string product; member in struct:FakeWebRtcDeviceInfo::Device
75 dev->product.c_str());
/external/deqp/modules/gles31/functional/
H A Des31fShaderSharedVarTests.cpp63 static inline T product (const tcu::Vector<T, Size>& v) function in namespace:deqp::gles31::Functional
117 const int valArrayLength = de::min<int>(MAX_VALUE_ARRAY_LENGTH, product(m_workGroupSize));
187 const int numValues = (int)product(m_workGroupSize);
297 gl.uniform1ui(iterCountLoc, product(m_workGroupSize));
316 const deUint32 numValues = product(m_workGroupSize);
/external/eigen/Eigen/src/SparseCore/
H A DSparseProduct.h143 // * for a dot product use: v1.dot(v2)
144 // * for a coeff-wise product use: v1.cwise()*v2
161 inline Derived& SparseMatrixBase<Derived>::operator=(const SparseSparseProduct<Lhs,Rhs>& product) argument
163 product.evalTo(derived());
167 /** \returns an expression of the product of two sparse matrices.
168 * By default a conservative product preserving the symbolic non zeros is performed.
170 * in which case a totally different product algorithm is employed:
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256Poly.cpp152 CFX_Int32Array product; local
153 product.SetSize(aLength + bLength - 1);
157 product[i + j] = CBC_ReedSolomonGF256::AddOrSubtract(
158 product[i + j],
163 temp->Init(m_field, &product, e);
179 CFX_Int32Array product; local
180 product.SetSize(size);
182 product[i] = m_field->Multiply(m_coefficients[i], scalar);
185 temp->Init(m_field, &product, e);
203 CFX_Int32Array product; local
[all...]

Completed in 2052 milliseconds

1234