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

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 48 /* 2. The product tc * Fs is limited approximately to the range */
66 LVM_UINT32 Product;
123 /* Calculate the product of the time constant and the sample rate */
124 Product = ((tc >> 16) * (LVM_UINT32)Fs) << 13; /* Stereo value */
125 Product = Product + (((tc & 0x0000FFFF) * (LVM_UINT32)Fs) >> 3);
129 Product = Product >> 1; /* Mono value */
135 if ((Product & 0x80000000)!=0)
140 Product = Product << 1
    [all...]
  /external/chromium_org/chrome/installer/util/
product.cc 5 #include "chrome/installer/util/product.h"
30 Product::Product(BrowserDistribution* distribution)
53 Product::~Product() {
56 void Product::InitializeFromPreferences(const MasterPreferences& prefs) {
60 void Product::InitializeFromUninstallCommand(
65 void Product::GetUserDataPaths(std::vector<base::FilePath>* paths) const {
69 bool Product::LaunchChrome(const base::FilePath& application_path) const {
78 bool Product::LaunchChromeAndWait(const base::FilePath& application_path
    [all...]
product.h 23 class Product;
26 // Represents an installation of a specific product which has a one-to-one
27 // relation to a BrowserDistribution. A product has registry settings, related
29 // the files on disk. The Package may be shared with other Product instances,
30 // so only the last Product to be uninstalled should remove the package.
31 // Right now there are no classes that derive from Product, but in
35 class Product {
37 explicit Product(BrowserDistribution* distribution);
39 ~Product();
147 DISALLOW_COPY_AND_ASSIGN(Product);
    [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/eigen/Eigen/src/Core/
Product.h 13 template<typename Lhs, typename Rhs> class Product;
16 /** \class Product
19 * \brief Expression of the product of two arbitrary matrices or vectors
24 * This class represents an expression of the product of two arbitrary matrices.
30 struct traits<Product<Lhs, Rhs> >
53 class Product : public ProductImpl<Lhs,Rhs,typename internal::promote_storage_type<typename internal::traits<Lhs>::StorageKind,
62 EIGEN_GENERIC_PUBLIC_INTERFACE(Product)
69 Product(const Lhs& lhs, const Rhs& rhs) : m_lhs(lhs), m_rhs(rhs)
72 && "invalid matrix product"
73 && "if you wanted a coeff-wise or a dot product use the respective explicit functions")
    [all...]
  /external/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/chromium_org/rlz/lib/
rlz_enums.h 38 IE_BROWSED_PAGE, // Search made in IE through user action (no product).
104 // A product is an entity which wants to gets credit for setting
106 enum Product {
120 // Events that note Product and Access Point modifications.
129 ACTIVATE, // Product being used for a period of time.
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 72 // ; %product = mul i32 %divisor, %quotient
73 // ; %remainder = sub i32 %dividend, %product
75 Value *Product = Builder.CreateMul(Divisor, Quotient);
76 Value *Remainder = Builder.CreateSub(Dividend, Product);
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 750 unsigned long long Product =
752 PathCount = Product;
753 // Overflow occured if any of the upper bits of Product are set.
754 return Product >> 32;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 

Completed in 1104 milliseconds