Searched refs:product (Results 1 - 25 of 263) sorted by relevance

1234567891011

/external/syslinux/gpxe/src/include/gpxe/
H A Disa_ids.h13 * product byte 0 bits 7-4 first hex digit of product number
14 * bits 3-0 second hex digit of product number
15 * byte 1 bits 7-4 third hex digit of product number
41 * Extract product ID and revision from combined product field
45 #define ISA_PROD_ID(product) ( (product) & ISA_PROD_ID_MASK )
46 #define ISA_PROD_REV(product) ( ( (product)
[all...]
/external/autotest/client/common_lib/cros/cfm/usb/
H A Dcfm_usb_devices.py24 product='Huddly GO', variable
31 product='Logitech Webcam C930e', variable
38 product='HD Pro Webcam C920', variable
45 product='PTZ Pro Camera', variable
52 product='PTZ Pro 2 Camera', variable
60 product='Hangouts Meet speakermic', variable
67 product='Jabra SPEAK 410', variable
75 product='MIMO VUE HD', variable
87 product='MIMO VUE HD', variable
97 product variable
[all...]
H A Dusb_device_spec.py13 def __init__(self, vid, pid, product, interfaces):
19 @param product: Product description. String
24 self._product = product
40 """Returns the product id for this USB device."""
49 def product(self): member in class:UsbDeviceSpec
50 """Returns the product name."""
H A Dusb_device_unittest.py15 product='product',
28 self.assertEqual(self._usb_device.product, 'product')
46 product='product',
61 product='product',
H A Dusb_device_spec_unittest.py14 product='product',
24 self.assertEqual(self._spec.product, 'product')
/external/syslinux/gpxe/src/drivers/bus/
H A Disa_ids.c11 char * isa_id_string ( unsigned int vendor, unsigned int product ) {
23 sprintf ( &buf[3], "%04x", bswap_16 ( product ) );
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java26 * Returns the product of the available values.
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
122 double product = Double.NaN;
124 product = 1.0;
126 product *= values[i];
129 return product;
133 * <p>Returns the weighted product of the entries in the specified portion of
148 * weighted product = &prod;values[i]<sup>weights[i]</sup>
150 * that is, the weights are applied as exponents when computing the weighted product
[all...]
/external/syslinux/com32/lua/src/
H A Dpci.c54 lua_pushstring(L, "product");
55 lua_pushnumber(L, pci_device->product);
80 char product[255]; local
123 /* if we have a tab + a char, it means this is a product id */
126 /* the product name the second field */
127 strlcpy(product,skipspace(strstr(line," ")),255);
128 remove_eol(product);
132 /* the product id is first field */
137 lua_pushstring(L, product);
140 /* if we have two tabs, it means this is a sub product */
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dreshape_op.h43 // Compute the output shape. Determine product of specified
46 int64 product = 1; variable
50 OP_REQUIRES_OK(context, ValidateSizes<int32>(sizes, &product,
54 OP_REQUIRES_OK(context, ValidateSizes<int64>(sizes, &product,
65 context, product > 0,
69 const int64 missing = input.NumElements() / product;
71 context, product * missing == input.NumElements(),
75 product));
94 Status ValidateSizes(const Tensor& sizes, int64* product, int* unknown_index, argument
96 *product
[all...]
H A Dmkl_reshape_op.cc53 // Compute the output shape. Determine product of specified
56 int64 product = 1; variable
60 OP_REQUIRES_OK(context, ValidateSizes<int32>(sizes, &product,
64 OP_REQUIRES_OK(context, ValidateSizes<int64>(sizes, &product,
75 context, product > 0,
79 const int64 missing = input.NumElements() / product;
81 context, product * missing == input.NumElements(),
85 product));
178 // Compute the output shape. Determine product of specified
181 int64 product variable
322 ValidateSizes(const Tensor& sizes, int64* product, int* unknown_index, TensorShape* shape) argument
[all...]
/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/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dreshape_op.cc46 // Compute the output shape. Determine product of specified
50 int64 product = 1; variable
66 product *= size;
71 ctx, product > 0,
75 const int64 missing = input_shape.num_elements() / product;
77 ctx, product * missing == input_shape.num_elements(),
81 product));
/external/annotation-tools/asmx/
H A Dbuild.properties31 # Some information about the product
33 product.name asm
34 product.version 2.2.2
35 # product.snapshot yes
/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/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DInvoice.java25 public List<Product> product; field in class:Invoice
/external/autotest/client/common_lib/
H A Dandroid_utils.py41 On android it is only possible to get a devices product name
42 (eg. marlin, sailfish). However a product may have several aliases
44 etc. This wrapper allows for mapping the product name to different
48 product: The name a device reports itself as.
50 alias: Some name a device is called, this includes both product and
54 # regex pattern for CLIENT/android_aliases_[product]. For example,
56 # android product name `zzz` has following aliases.
61 # A dict of product:aliases for product aliases, can be defined in global
62 # config CLIENT/android_aliases_[product]
[all...]
/external/autotest/server/site_tests/provision_CheetsUpdate/lib/
H A Dutil.py108 def get_product_arch(product):
109 """Returns the architecture of a given target |product|."""
112 idx = product.find(product_prefix)
115 return product[idx + len(product_prefix):]
116 raise Exception('Unrecognized product: %s' % product)
119 def get_product_name(product):
120 """Returns the name of a given target |product|."""
123 idx = product.find(product_prefix)
127 raise Exception('Unrecognized product
[all...]
/external/tensorflow/tensorflow/contrib/nearest_neighbor/python/kernel_tests/
H A Dhyperplane_lsh_probes_test.py37 product = np.dot(points, hyperplanes)
41 hashes, tables = hyperplane_lsh_probes(product,
/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/google-breakpad/src/common/linux/
H A Dgoogle_crashdump_uploader.h45 GoogleCrashdumpUploader(const string& product,
57 GoogleCrashdumpUploader(const string& product,
70 void Init(const string& product,
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DUserAgentParser.java83 * server-val = product / comment product = token [SLASH
84 * product-version] product-version = token
93 // product = token [SLASHproduct-version]
94 // product-version = token
100 String product = this.lexer.byteStringNoSlash();
101 if ( product == null ) throw createParseException("Expected product string");
103 StringBuffer productSb = new StringBuffer(product);
[all...]
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
H A DBigIntegerMath.java122 * Returns {@code n!}, that is, the product of the first {@code n} positive
147 long product = LongMath.factorials[startingNumber - 1];
149 int shift = Long.numberOfTrailingZeros(product);
150 product >>= shift;
153 int productBits = LongMath.log2(product, FLOOR) + 1;
171 // If it won't fit in a long, then we store off the intermediate product.
173 bignums.add(BigInteger.valueOf(product));
174 product = 1;
177 product *= normalizedNum;
178 productBits = LongMath.log2(product, FLOO
[all...]
/external/pdfium/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256Poly.cpp150 std::vector<int32_t> product(aLength + bLength - 1);
154 product[i + j] = CBC_ReedSolomonGF256::AddOrSubtract(
155 product[i + j], m_field->Multiply(aCoeff, bCoefficients[j]));
159 if (!temp->Init(m_field.Get(), &product))
172 std::vector<int32_t> product(size);
174 product[i] = m_field->Multiply(m_coefficients[i], scalar);
177 if (!temp->Init(m_field.Get(), &product))
191 std::vector<int32_t> product(size + degree);
193 product[i] = m_field->Multiply(m_coefficients[i], coefficient);
196 if (!temp->Init(m_field.Get(), &product))
[all...]

Completed in 675 milliseconds

1234567891011