HomeSort by relevance Sort by last modified time
    Searched defs:product (Results 26 - 50 of 283) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/core/adb/
transport_test.cpp 89 ASSERT_EQ(nullptr, t.product);
98 "host::ro.product.name=foo;ro.product.model=bar;ro.product.device=baz;";
105 ASSERT_EQ(std::string("foo"), t.product);
114 "host::ro.product.name=foo;ro.product.model=bar;ro.product.device=baz;"
124 ASSERT_EQ(std::string("foo"), t.product);
132 std::string product = "test_product" local
    [all...]
  /toolchain/benchmark/
config.py 54 # Please change both product and architecture at same time
55 # Product can be chosen from the lunch list of android building.
58 # Arch can be found from out/target/product
59 product = get_suite_env('product') variable
  /bionic/libc/kernel/uapi/linux/
hidraw.h 30 __s16 product; member in struct:hidraw_devinfo
  /external/ImageMagick/MagickCore/
delegate-private.h 27 const char *product; member in struct:gsapi_revision_s
  /external/clang/test/Parser/
cxx1z-fold-expressions.cpp 4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 33 // 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");
99 fprintf(stderr, "-v:\t <version> Product version\n");
115 options->product = optarg;
  /external/kernel-headers/original/uapi/linux/
hidraw.h 30 __s16 product; member in struct:hidraw_devinfo
  /external/nist-sip/java/gov/nist/javax/sip/parser/
UserAgentParser.java 83 * 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(); local
101 if ( product == null ) throw createParseException("Expected product string");
103 StringBuffer productSb = new StringBuffer(product);
    [all...]
  /external/syslinux/com32/lua/src/
pci.c 54 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/
reshape_util.cc 56 // Compute the output shape. Determine product of specified dimensions, and
59 int64 product = 1; local
76 product *= size;
82 context, product > 0,
86 const int64 missing = dense_size / product;
88 context, product * missing == dense_size,
92 product));
reduce_join_op.cc 36 int64 product = 1; local
38 result[i] = product;
39 product *= shape.dim_size(i);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
basic_op_c_equivalent.h 246 L_product = 32-bit product of L_var1 and L_var2 (Word32)
320 L_product = 32-bit product of L_var1 and L_var2 (Word32)
390 pOverflow -> 1 if the 32 bit product operation resulted in overflow
393 product = 32-bit product of the 32-bit L_var1 and 16-bit var1 (Word32)
452 product = 16-bit limited product of var1 and var2 (Word16)
456 Word32 product; local
458 product = ((Word32) var1 * var2) >> 15;
464 if (product > 0x00007fffL
    [all...]
basic_op_arm_gcc_v5.h 238 L_product = 32-bit product of L_var1 and L_var2 (Word32)
246 Word32 product; local
251 : "=r"(product)
257 : "r"(product), "r"(product)
291 Word32 product; local
297 : "=r"(product)
303 : "r"(ra), "r"(product)
327 L_product = 32-bit product of L_var1 and L_var2 (Word32)
408 pOverflow -> 1 if the 32 bit product operation resulted in overflo
481 Word32 product; local
    [all...]
basic_op_arm_v5.h 221 L_product = 32-bit product of L_var1 and L_var2 (Word32)
226 Word32 product; local
232 SMULBB product, var1, var2 local
233 QADD result, product, product local
265 Word32 product; local
272 SMULBB product, var1, var2 local
273 QDSUB result, L_var3, product
297 L_product = 32-bit product of L_var1 and L_var2 (Word32)
348 pOverflow -> 1 if the 32 bit product operation resulted in overflo
396 Word32 product; local
402 SMULBB product, var1, var2 local
403 MOV product, product, ASR #15 local
404 CMP product, 0x7FFF local
405 MOVGE product, 0x7FFF local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
hidraw.h 29 __s16 product; member in struct:hidraw_devinfo
  /development/ide/emacs/
android-common.el 25 ;; If the path the product's files/image uses an a product alias, you
26 ;; need to add a mapping in `android-product-alias-map'. For instance
27 ;; if TARGET_PRODUCT is foo but the build directory is out/target/product/bar,
54 (defcustom android-product-alias-map nil
55 "Alist between product targets (declared in buildspec.mk) and actual
56 product build directory used by `android-product'.
59 is 'out/target/product/bar', you need to add a mapping Target:foo -> Alias:bar."
102 (defun android-product ()
    [all...]
  /cts/tests/sample/src/android/sample/cts/
SampleDeviceReportLogTest.java 65 int product = MULTIPLICATION_NUMBER_1 * MULTIPLICATION_NUMBER_2; local
66 assertTrue("Multiplication result do not match", product == MULTIPLICATION_RESULT);
73 reportLog.addValue(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE);
74 reportLog.setSummary(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
Product.java 26 * Returns the product of the available values.
38 public class Product extends AbstractStorelessUnivariateStatistic implements Serializable, WeightedEvaluation {
47 * The current Running Product.
52 * Create a Product instance
54 public Product() {
60 * Copy constructor, creates a new {@code Product} identical
63 * @param original the {@code Product} instance to copy
65 public Product(Product original) {
107 * Returns the product of the entries in the specified portion o
122 double product = Double.NaN; local
162 double product = Double.NaN; local
    [all...]
  /external/clang/test/SemaTemplate/
cxx1z-fold-expressions.cpp 4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
9 static_assert(product(1, 2, 3, 4, 5) == 120);
  /external/eigen/test/
product.h 20 template<typename MatrixType> void product(const MatrixType& m) function
23 Identity.h Product.h
58 // begin testing Product.h: only associativity for now
66 // continue testing Product.h: distributivity
70 // continue testing Product.h: compatibility with ScalarMultiple.h
74 // test Product.h together with Identity.h
135 // test submatrix and matrix/vector product
194 // inner product
200 // outer product
  /external/google-breakpad/src/tools/windows/symupload/
symupload.cc 39 // 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 name
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtcdeviceinfo.h 43 std::string product; member in struct:FakeWebRtcDeviceInfo::Device
75 dev->product.c_str());
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
MDnsUtils.java 28 public static final String ATTRIBUTE__PRODUCT = "product";
40 String product = getString(attributes.get(ATTRIBUTE__PRODUCT)); local
44 return containsVendor(product, vendorValues) || containsVendor(ty, vendorValues) || containsVendor(usbMfg, vendorValues) || containsVendor(mfg, vendorValues);
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/xerox/
MDnsUtils.java 27 public static final String ATTRIBUTE__PRODUCT = "product";
37 String product = getString(attributes.get(ATTRIBUTE__PRODUCT)); local
42 return (containsVendor(product, vendorValues) || containsVendor(ty, vendorValues) ||
44 !(containsString(ty, EXCLUDE_FUJI) || containsString(product, EXCLUDE_FUJI) ||
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
ResultReporterBuildInfoTest.java 35 String product = "gProduct"; local
40 String fingerprint = brand + "/" + product + "/" + device + ":" +
48 assertEquals(invocationInfo.get(ResultReporter.BUILD_PRODUCT), product); local

Completed in 383 milliseconds

12 3 4 5 6 7 8 91011>>