HomeSort by relevance Sort by last modified time
    Searched defs:Product (Results 1 - 25 of 29) sorted by null

1 2

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Product.java 18 public class Product {
26 return "Product: " + sku;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 48 /* 2. The product tc * Fs is limited approximately to the range */
70 LVM_UINT32 Product;
128 /* Calculate the product of the time constant and the sample rate */
129 Product = ((tc >> 16) * (LVM_UINT32)Fs) << 13; /* Stereo value */
130 Product = Product + (((tc & 0x0000FFFF) * (LVM_UINT32)Fs) >> 3);
134 Product = Product >> 1; /* Mono value */
140 if ((Product & 0x80000000) != 0)
145 Product = Product << 1
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscBaseBoardManufacturerFunction.c 39 EFI_STRING Product;
66 Product = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
67 ProductStrLen = StrLen(Product);
149 UnicodeStrToAsciiStr(Product, OptionalStrStart + ManuStrLen + 1);
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscBaseBoardManufacturerFunction.c 39 EFI_STRING Product;
66 Product = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
67 ProductStrLen = StrLen(Product);
149 UnicodeStrToAsciiStr(Product, OptionalStrStart + ManuStrLen + 1);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type01/
MiscSystemManufacturerFunction.c 61 CHAR16 *Product;
76 Product = (CHAR16 *) PcdGetPtr (PcdSystemProductName);
77 if (StrLen(Product) > 0)
80 HiiSetString (mHiiHandle, TokenToUpdate, Product, NULL);
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/
MiscBaseBoardManufacturerFunction.c 44 EFI_STRING Product;
85 Product = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
168 UnicodeStrToAsciiStr(Product, OptionalStrStart + ManuStrLen + 1);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscBaseBoardManufacturerFunction.c 59 EFI_STRING Product;
99 Product = SmbiosMiscGetString (TokenToGet);
100 ProductStrLen = StrLen(Product);
225 UnicodeStrToAsciiStr(Product, OptionalStrStart + ManuStrLen + 1);
  /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/CodeGenCXX/
temp-order.cpp 13 unsigned Product, Index;
15 TempTracker() : Product(1), Index(0) {}
30 TT.Product *= pow(P, ++TT.Index);
53 return tt.Product;
65 return tt.Product;
77 return tt.Product;
91 return tt.Product;
103 return tt.Product;
117 return tt.Product;
129 return tt.Product;
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Analysis/
ScalarEvolutionTest.cpp 141 const SCEVAddRecExpr *Product =
143 ASSERT_TRUE(Product);
144 ASSERT_EQ(Product->getNumOperands(), 9u);
148 EXPECT_EQ(Product->getOperand(0), SE.getAddExpr(Sum));
157 EXPECT_EQ(Product->getOperand(1), SE.getAddExpr(Sum));
166 EXPECT_EQ(Product->getOperand(2), SE.getAddExpr(Sum));
179 EXPECT_EQ(Product->getOperand(3), SE.getAddExpr(Sum));
197 EXPECT_EQ(Product->getOperand(4), SE.getAddExpr(Sum));
210 EXPECT_EQ(Product->getOperand(5), SE.getAddExpr(Sum));
219 EXPECT_EQ(Product->getOperand(6), SE.getAddExpr(Sum))
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
util.cc 207 int64 Product(absl::Span<const int64> xs) {
214 CHECK_EQ(Product(a), Product(b));
215 if (0 == Product(a)) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmBootDescription.c 212 // EFI_SCSI_INQUIRY_DATA.Reserved_5_95[11 - 26] save the product identification,
213 // Here combine the vendor identification and product identification to the description.
222 // Add one space at the middle of vendor information and product information.
253 CHAR16 *Product;
289 &Product
292 Product = &NullChar;
306 (Product == &NullChar) &&
312 DescMaxSize = StrSize (Manufacturer) + StrSize (Product) + StrSize (SerialNumber);
318 StrCatS (Description, DescMaxSize/sizeof(CHAR16), Product);
326 if (Product != &NullChar) {
    [all...]
  /external/eigen/Eigen/src/Core/
Product.h 20 struct traits<Product<Lhs, Rhs, Option> >
56 /** \class Product
59 * \brief Expression of the product of two arbitrary matrices or vectors
64 * This class represents an expression of the product of two arbitrary matrices.
71 class Product : public ProductImpl<_Lhs,_Rhs,Option,
86 EIGEN_GENERIC_PUBLIC_INTERFACE(Product)
93 EIGEN_DEVICE_FUNC Product(const Lhs& lhs, const Rhs& rhs) : m_lhs(lhs), m_rhs(rhs)
96 && "invalid matrix product"
97 && "if you wanted a coeff-wise or a dot product use the respective explicit functions");
116 : public internal::dense_xpr_base<Product<Lhs,Rhs,Option> >::typ
    [all...]
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 148 const SCEVAddRecExpr *Product =
150 ASSERT_TRUE(Product);
151 ASSERT_EQ(Product->getNumOperands(), 9u);
155 EXPECT_EQ(Product->getOperand(0), SE.getAddExpr(Sum));
164 EXPECT_EQ(Product->getOperand(1), SE.getAddExpr(Sum));
173 EXPECT_EQ(Product->getOperand(2), SE.getAddExpr(Sum));
186 EXPECT_EQ(Product->getOperand(3), SE.getAddExpr(Sum));
204 EXPECT_EQ(Product->getOperand(4), SE.getAddExpr(Sum));
217 EXPECT_EQ(Product->getOperand(5), SE.getAddExpr(Sum));
226 EXPECT_EQ(Product->getOperand(6), SE.getAddExpr(Sum))
    [all...]
  /external/python/cpython3/Parser/
asdl.py 6 # modules and attributes after a product. Words starting with Capital letters
12 # type ::= product | sum
13 # product ::= fields ["attributes" fields]
27 'Field', 'Sum', 'Product', 'VisitorBase', 'Check', 'check']
98 class Product(AST):
105 return 'Product({0.fields}, {0.attributes})'.format(self)
107 return 'Product({0.fields})'.format(self)
286 # If we see a (, it's a product
301 return Product(self._parse_fields(), self._parse_optional_attributes())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl.py 144 def p_type_0(self, (product,)):
145 " type ::= product "
146 return product
162 " product ::= ( fields ) "
165 return Product(fields)
288 class Product(AST):
293 return "Product(%s)" % self.fields
  /external/python/cpython2/Parser/
asdl.py 144 def p_type_0(self, (product,)):
145 " type ::= product "
146 return product
162 " product ::= ( fields ) "
165 return Product(fields)
288 class Product(AST):
293 return "Product(%s)" % self.fields
  /external/llvm/include/llvm/Support/
MathExtras.h 758 /// integer, A to the product. Clamp the result to the maximum representable
769 T Product = SaturatingMultiply(X, Y, &Overflowed);
771 return Product;
773 return SaturatingAdd(A, Product, &Overflowed);
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 87 // ; %product = mul i32 %divisor, %quotient
88 // ; %remainder = sub i32 %dividend, %product
90 Value *Product = Builder.CreateMul(Divisor, Quotient);
91 Value *Remainder = Builder.CreateSub(Dividend, Product);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MathExtras.h 834 /// the product. Clamp the result to the maximum representable value of T on
843 T Product = SaturatingMultiply(X, Y, &Overflowed);
845 return Product;
847 return SaturatingAdd(A, Product, &Overflowed);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 87 // ; %product = mul i32 %divisor, %quotient
88 // ; %remainder = sub i32 %dividend, %product
90 Value *Product = Builder.CreateMul(Divisor, Quotient);
91 Value *Remainder = Builder.CreateSub(Dividend, Product);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 816 /// the product. Clamp the result to the maximum representable value of T on
825 T Product = SaturatingMultiply(X, Y, &Overflowed);
827 return Product;
829 return SaturatingAdd(A, Product, &Overflowed);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LICM.cpp 505 auto Product =
507 Product->setFastMathFlags(I.getFastMathFlags());
508 Product->insertAfter(&I);
509 I.replaceAllUsesWith(Product);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 294 unsigned long long Product =
296 // Overflow occurred if any of the upper bits of Product are set or if all
297 // the lower bits of Product are all set.
298 return (Product >> 32) ||
299 ((PathCount = Product) == OverflowOccurredValue);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 292 unsigned long long Product =
294 // Overflow occurred if any of the upper bits of Product are set or if all
295 // the lower bits of Product are all set.
296 return (Product >> 32) ||
297 ((PathCount = Product) == OverflowOccurredValue);
    [all...]

Completed in 3442 milliseconds

1 2