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

123

/external/v8/test/cctest/
H A Dtest-diy-fp.cc31 DiyFp product = DiyFp::Times(diy_fp1, diy_fp2); local
33 CHECK(0 == product.f()); // NOLINT
34 CHECK_EQ(64, product.e());
41 product = DiyFp::Times(diy_fp1, diy_fp2);
42 CHECK(1 == product.f()); // NOLINT
43 CHECK_EQ(11 + 13 + 64, product.e());
48 product = DiyFp::Times(diy_fp1, diy_fp2);
49 CHECK(1 == product.f()); // NOLINT
50 CHECK_EQ(11 + 13 + 64, product.e());
54 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/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/chromium/chrome/browser/extensions/
H A Dextension_rlz_module.cc16 rlz_lib::Product* product) {
20 *product = rlz_lib::FF_TOOLBAR;
23 *product = rlz_lib::CHROME;
26 *product = rlz_lib::DESKTOP;
29 *product = rlz_lib::QSB_WIN;
32 *product = rlz_lib::PINYIN_IME;
35 *product = rlz_lib::TOOLBAR_NOTIFIER;
38 *product = rlz_lib::IE_TOOLBAR;
41 *product = rlz_lib::PACK;
44 *product
15 GetProductFromName(const std::string& product_name, rlz_lib::Product* product) argument
81 rlz_lib::Product product; local
124 rlz_lib::Product product; local
185 rlz_lib::Product product; local
[all...]
/external/chromium/webkit/glue/
H A Duser_agent.cc124 // Get the product name and version, and replace Safari's Version/X string
125 // with it. This is done to expose our product name in a manner that is
127 std::string product = GetProductVersion(); local
138 product.c_str(),
/external/webkit/Source/WebCore/page/
H A DNavigatorBase.cpp104 String NavigatorBase::product() const function in class:WebCore::NavigatorBase
/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/eigen/test/eigen2/
H A Dproduct.h21 template<typename MatrixType> void product(const MatrixType& m) function
114 // test submatrix and matrix/vector product
/external/eigen/test/
H A Dproduct.h20 template<typename MatrixType> void product(const MatrixType& m) function
120 // test submatrix and matrix/vector product
140 // inner product
/external/kernel-headers/original/linux/
H A Dhidraw.h29 __s16 product; member in struct:hidraw_devinfo
H A Duhid.h48 __u32 product; member in struct:uhid_create_req
/external/skia/include/core/
H A DSkMath.h18 /** Computes the 64bit product of a * b, and then shifts the answer down by
163 int32_t product; local
165 : "=r"(product)
168 return product;
/external/chromium/chrome/browser/rlz/
H A Drlz.cc297 bool RLZTracker::RecordProductEvent(rlz_lib::Product product, argument
300 return rlz_lib::RecordProductEvent(product, point, event_id);
303 bool RLZTracker::ClearAllProductEvents(rlz_lib::Product product) { argument
304 return rlz_lib::ClearAllProductEvents(product);
/external/chromium/net/websockets/
H A Dwebsocket_handshake.cc281 uint32 product = *number * space; local
283 std::string s = base::StringPrintf("%u", product);
/external/compiler-rt/lib/
H A Dfp_lib.h43 const uint64_t product = (uint64_t)a*b; local
44 *hi = product >> 32;
45 *lo = product;
/external/eigen/Eigen/src/SparseCore/
H A DSparseProduct.h141 // * for a dot product use: v1.dot(v2)
142 // * for a coeff-wise product use: v1.cwise()*v2
159 inline Derived& SparseMatrixBase<Derived>::operator=(const SparseSparseProduct<Lhs,Rhs>& product) argument
161 product.evalTo(derived());
165 /** \returns an expression of the product of two sparse matrices.
166 * By default a conservative product preserving the symbolic non zeros is performed.
168 * in which case a totally different product algorithm is employed:
/external/openfst/src/include/fst/
H A Dsparse-power-weight.h179 // Semimodule dot product
183 const SparsePowerWeight<W, K>& product = Times(w1, w2); local
185 for (SparseTupleWeightIterator<W, K> it(product); !it.Done(); it.Next()) {
/external/v8/src/
H A Dbignum.cc257 // The product of a bigit with the factor is of size kBigitSize + 32.
262 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; local
263 bigits_[i] = static_cast<Chunk>(product & kBigitMask);
264 carry = (product >> kBigitSize);
748 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i];
749 DoubleChunk remove = borrow + product;
/external/webkit/Source/WebCore/html/canvas/
H A DCheckedInt.h289 twice_bigger_type product = twice_bigger_type(x) * twice_bigger_type(y); local
290 return is_in_range<T>(product);
300 twice_bigger_type product = twice_bigger_type(x) * twice_bigger_type(y); local
301 return is_in_range<T>(product);
457 /** \returns the product. Checks for overflow. */
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java782 * @param product
784 * created. It is safe for mat and product to be the same object.
787 public Matrix3f mult(Matrix3f mat, Matrix3f product) { argument
793 if (product == null) {
794 product = new Matrix3f();
806 product.m00 = temp00;
807 product.m01 = temp01;
808 product.m02 = temp02;
809 product.m10 = temp10;
810 product
843 mult(Vector3f vec, Vector3f product) argument
[all...]
H A DVector2f.java200 * <code>dot</code> calculates the dot product of this vector with a
205 * @return the resultant dot product of this vector and a given vector.
216 * <code>cross</code> calculates the cross product of this vector with a
220 * the vector to take the cross product of with this.
221 * @return the cross product vector.
387 * product. The result is returned for chaining. Similar to
388 * product=this*scalar;
392 * @param product
394 * @return product, after multiplication.
396 public Vector2f mult(float scalar, Vector2f product) { argument
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex301 \item compute dot product of floor and residue, producing audio spectrum vector
438 combining generation and the dot product into one step and eliminating
442 vector to be multiplied (dot product) by the linear-range,
447 \paragraph{compute floor/residue dot product}
454 % in section 4 (under "dot product")
455 One point is worth mentioning about this dot product; a common mistake
472 product must be able to handle an effective 48 bit times 24 bit
/external/aac/libFDK/src/
H A Dfixpoint_math.cpp479 INT product = 0; local
491 product = fMult(f1, f2);
494 return (FIXP_DBL)product;

Completed in 553 milliseconds

123