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

1 23 4 5 6 7 8 91011>>

  /test/vti/test_serving/configs/infra/prod/androidtestcenter/scripts/
home_bot_config.py 114 def product(self): member in class:Device
115 return self.properties.get('ro.build.product', None)
208 dimensions[u'product'] = _DEVICE.product,
  /test/vti/test_serving/configs/infra/test/androidtestcenter-test/scripts/
home_bot_config.py 114 def product(self): member in class:Device
115 return self.properties.get('ro.build.product', None)
208 dimensions[u'product'] = _DEVICE.product,
  /bionic/libc/kernel/uapi/linux/
virtio_input.h 41 __u16 product; member in struct:virtio_input_devids
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 29 import org.apache.commons.math.stat.descriptive.summary.Product;
49 private static final UnivariateStatistic PRODUCT = new Product();
148 * 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
158 return PRODUCT.evaluate(values);
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
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
BigIntegerMath.java 122 * Returns {@code n!}, that is, the product of the first {@code n} positive
147 long product = LongMath.factorials[startingNumber - 1]; local
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, FLOOR) + 1
    [all...]
  /external/kernel-headers/original/uapi/linux/
virtio_input.h 53 __u16 product; member in struct:virtio_input_devids
  /external/oj-libjdwp/src/share/back/
log_messages.c 116 const char *product,
133 product,
149 const char *product; local
171 product = "J2SE1.5"; /* FIXUP? */
191 product,
  /external/swiftshader/src/D3D8/
Direct3D8.cpp 689 unsigned short product = 'sw'; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
smbios.h 103 /** Product string */
104 uint8_t product; member in struct:smbios_system_information
  /external/syslinux/gpxe/src/util/Option/
ROM.pm 450 product => { offset => 0x10, length => 0x02, pack => "S" },
490 sub product { subroutine
494 my $product = $hash->{product};
495 return undef unless $product;
497 my $raw = substr ( ${$self->{data}}, $product );
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_helpers.cc 78 xla::ComputationDataHandle product = local
84 builder->Reduce(product, XlaHelpers::MinValue(builder, output_type),
  /external/tensorflow/tensorflow/core/kernels/
mkl_reshape_op.cc 53 // 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 = 1 variable
    [all...]
  /external/tensorflow/tensorflow/core/lib/random/
philox_random.h 210 const uint64 product = static_cast<uint64>(a) * b; local
211 *result_low = static_cast<uint32>(product);
212 *result_high = static_cast<uint32>(product >> 32);
  /external/v8/src/
bignum.cc 236 // The product of a bigit with the factor is of size kBigitSize + 32.
241 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; local
242 bigits_[i] = static_cast<Chunk>(product & kBigitMask);
243 carry = (product >> kBigitSize);
727 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i];
728 DoubleChunk remove = borrow + product;
  /system/core/adb/
transport.h 141 char* product = nullptr; member in class:atransport
178 // * product:<product>
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
DeviceInfoEntity.java 33 public static final String PRODUCT = "product";
42 public final String product; field in class:DeviceInfoEntity
53 * @param product The device product.
59 public DeviceInfoEntity(Key parentKey, String branch, String product, String buildFlavor,
63 this.product = product;
74 deviceEntity.setProperty(PRODUCT, this.product.toLowerCase())
101 String product = (String) e.getProperty(PRODUCT); local
134 String product = device.getProductVariant().toStringUtf8(); local
    [all...]
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
ListDevicesOp.java 36 private static final String PRODUCT = "product";
85 final String product = deviceStateJson.getString(PRODUCT); local
92 .valueOf(stateString), product, productVariant, sdk, incrementalBuild,
115 deviceStateJson.put(PRODUCT, descriptor.getProduct());
  /build/make/core/
dex_preopt_libart.mk 31 define get-product-default-property
37 DEX2OAT_IMAGE_XMS := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xms)
38 DEX2OAT_IMAGE_XMX := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xmx)
39 DEX2OAT_XMS := $(call get-product-default-property,dalvik.vm.dex2oat-Xms)
40 DEX2OAT_XMX := $(call get-product-default-property,dalvik.vm.dex2oat-Xmx)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SingularValueDecompositionImpl.java 146 // The right sign corresponds to a positive dot product of A.V_i and U_i
149 double product=matrix.operate(cachedV.getColumnVector(i)).dotProduct(tmp); local
150 if (product<0) {
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 130 * Returns an instance of this type that represents the product of this value and the
136 * Returns an instance of this type that represents the product of this value and {@code
233 "product of %s and %s would overflow", this, multiplicand);
238 BigDecimal product = BigDecimal.valueOf(picos).multiply(multiplicand); local
239 return ofPicos(toLong(product, roundingMode));
247 BigDecimal product = BigDecimal.valueOf(picos).divide(divisor, roundingMode); local
248 return ofPicos(product.longValueExact());
  /external/deqp/modules/gles31/functional/
es31fShaderAtomicOpTests.cpp 57 static inline T product (const tcu::Vector<T, Size>& v) function in namespace:deqp::gles31::Functional
123 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups);
134 << " " << (isSSBO ? "coherent " : "") << precName << " " << outTypeName << " groupValues[" << product(m_numWorkGroups) << "];\n"
203 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups);
207 groupVarInfo.arraySize == product(m_numWorkGroups));
220 for (deUint32 valNdx = 0; valNdx < product(m_numWorkGroups); valNdx++)
279 const int workGroupSize = (int)product(m_workGroupSize);
432 const int workGroupSize = (int)product(m_workGroupSize)
    [all...]
es31fShaderSharedVarTests.cpp 63 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/guava/guava/src/com/google/common/math/
BigIntegerMath.java 305 * Returns {@code n!}, that is, the product of the first {@code n} positive
330 long product = LongMath.factorials[startingNumber - 1]; local
332 int shift = Long.numberOfTrailingZeros(product);
333 product >>= shift;
336 int productBits = LongMath.log2(product, FLOOR) + 1;
354 // If it won't fit in a long, then we store off the intermediate product.
356 bignums.add(BigInteger.valueOf(product));
357 product = 1;
360 product *= normalizedNum;
361 productBits = LongMath.log2(product, FLOOR) + 1
    [all...]
  /external/libjpeg-turbo/
jcdctmgr.c 418 UDCTELEM2 product; local
428 product = (UDCTELEM2)(temp + corr) * recip;
429 product >>= shift + sizeof(DCTELEM)*8;
430 temp = (DCTELEM)product;
433 product = (UDCTELEM2)(temp + corr) * recip;
434 product >>= shift + sizeof(DCTELEM)*8;
435 temp = (DCTELEM)product;
  /external/libxaac/decoder/
ixheaacd_basic_ops32.h 133 WORD32 product; local
135 product = (WORD32)a * (WORD32)b;
137 return product;
141 WORD32 product; local
143 product = (WORD32)a * (WORD32)b;
145 return product;
149 WORD32 product; local
151 product = ixheaacd_shl32(ixheaacd_mult16x16in32(a, b), 1);
153 return product;
158 WORD32 product; local
    [all...]

Completed in 1522 milliseconds

1 23 4 5 6 7 8 91011>>