HomeSort by relevance Sort by last modified time
    Searched defs:Product (Results 1 - 9 of 9) 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/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/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/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 266 milliseconds