/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...] |
/external/eigen/Eigen/src/Core/ |
DiagonalProduct.h | 16 /** \returns the diagonal matrix product of \c *this by the diagonal matrix \a diagonal. 20 inline const Product<Derived, DiagonalDerived, LazyProduct> 23 return Product<Derived, DiagonalDerived, LazyProduct>(derived(),a_diagonal.derived());
|
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...] |
ProductEvaluators.h | 21 * Evaluator of a product expression. 29 struct evaluator<Product<Lhs, Rhs, Options> > 30 : public product_evaluator<Product<Lhs, Rhs, Options> > 32 typedef Product<Lhs, Rhs, Options> XprType; 43 const Product<Lhs, Rhs, DefaultProduct> > > 50 const Product<Lhs, Rhs, DefaultProduct> > > 51 : public evaluator<Product<EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar1,Lhs,product), Rhs, DefaultProduct> > 55 const Product<Lhs, Rhs, DefaultProduct> > XprType; 56 typedef evaluator<Product<EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar1,Lhs,product), Rhs, DefaultProduct> > Base [all...] |
Transpositions.h | 337 const Product<MatrixDerived, TranspositionsDerived, AliasFreeProduct> 341 return Product<MatrixDerived, TranspositionsDerived, AliasFreeProduct> 349 const Product<TranspositionsDerived, MatrixDerived, AliasFreeProduct> 353 return Product<TranspositionsDerived, MatrixDerived, AliasFreeProduct> 384 const Product<OtherDerived, Transpose, AliasFreeProduct> 387 return Product<OtherDerived, Transpose, AliasFreeProduct>(matrix.derived(), trt.derived()); 393 const Product<Transpose, OtherDerived, AliasFreeProduct> 396 return Product<Transpose, OtherDerived, AliasFreeProduct>(*this, matrix.derived());
|
/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/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
Product.java | 18 public class Product { 26 return "Product: " + sku;
|
Invoice.java | 25 public List<Product> product; field in class:Invoice
|
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/dao/ |
ProductDao.java | 21 import android.arch.persistence.room.integration.testapp.vo.Product; 28 long insert(@NonNull Product product);
|
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/vo/ |
Product.java | 24 public class Product { 32 public Product(int id, @NonNull String name) {
|
/device/generic/mini-emulator-armv7-a-neon/ |
BoardConfig.mk | 3 # Product-specific compile-time definitions.
|
/device/generic/mini-emulator-mips/ |
BoardConfig.mk | 3 # Product-specific compile-time definitions.
|
/external/eigen/Eigen/src/SparseCore/ |
SparseProduct.h | 15 /** \returns an expression of the product of two sparse matrices. 16 * By default a conservative product preserving the symbolic non zeros is performed. 18 * in which case a totally different product algorithm is employed: 28 inline const Product<Derived,OtherDerived,AliasFreeProduct> 31 return Product<Derived,OtherDerived,AliasFreeProduct>(derived(), other.derived()); 100 // dense = sparse-product (can be sparse*sparse, sparse*perm, etc.) 102 struct Assignment<DstXprType, Product<Lhs,Rhs,AliasFreeProduct>, internal::assign_op<typename DstXprType::Scalar,typename Product<Lhs,Rhs,AliasFreeProduct>::Scalar>, Sparse2Dense> 104 typedef Product<Lhs,Rhs,AliasFreeProduct> SrcXprType; 116 // dense += sparse-product (can be sparse*sparse, sparse*perm, etc. [all...] |
SparsePermutation.h | 93 // whereas it should be correctly handled by traits<Product<> >::PlainObject 96 struct product_evaluator<Product<Lhs, Rhs, AliasFreeProduct>, ProductTag, PermutationShape, SparseShape> 99 typedef Product<Lhs, Rhs, AliasFreeProduct> XprType; 119 struct product_evaluator<Product<Lhs, Rhs, AliasFreeProduct>, ProductTag, SparseShape, PermutationShape > 122 typedef Product<Lhs, Rhs, AliasFreeProduct> XprType; 146 inline const Product<SparseDerived, PermDerived, AliasFreeProduct> 148 { return Product<SparseDerived, PermDerived, AliasFreeProduct>(matrix.derived(), perm.derived()); } 153 inline const Product<PermDerived, SparseDerived, AliasFreeProduct> 155 { return Product<PermDerived, SparseDerived, AliasFreeProduct>(perm.derived(), matrix.derived()); } 161 inline const Product<SparseDerived, Inverse<PermutationType>, AliasFreeProduct [all...] |
SparseDiagonalProduct.h | 15 // The product of a diagonal matrix with a sparse matrix can be easily 19 // => each inner vector <=> scalar * sparse vector product 22 // => each inner vector <=> densevector * sparse vector cwise product 38 struct product_evaluator<Product<Lhs, Rhs, DefaultProduct>, ProductTag, DiagonalShape, SparseShape> 41 typedef Product<Lhs, Rhs, DefaultProduct> XprType; 49 struct product_evaluator<Product<Lhs, Rhs, DefaultProduct>, ProductTag, SparseShape, DiagonalShape> 52 typedef Product<Lhs, Rhs, DefaultProduct> XprType;
|
SparseMatrixBase.h | 296 const Product<Derived,OtherDerived> 298 { return Product<Derived,OtherDerived>(derived(), other.derived()); } 302 const Product<OtherDerived,Derived> 304 { return Product<OtherDerived,Derived>(lhs.derived(), rhs.derived()); } 308 const Product<Derived,OtherDerived,AliasFreeProduct> 313 const Product<Derived,OtherDerived> 315 { return Product<Derived,OtherDerived>(derived(), other.derived()); } 319 const Product<OtherDerived,Derived> 321 { return Product<OtherDerived,Derived>(lhs.derived(), rhs.derived()); }
|
/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...] |
/device/generic/mini-emulator-x86_64/ |
BoardConfig.mk | 3 # Product-specific compile-time definitions.
|
/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/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/ |
MiscBaseBoardManufacturerFunction.c | 59 EFI_STRING Product; 99 Product = SmbiosMiscGetString (TokenToGet); 100 ProductStrLen = StrLen(Product); 225 UnicodeStrToAsciiStr(Product, OptionalStrStart + ManuStrLen + 1);
|
/device/generic/armv7-a-neon/ |
BoardConfig.mk | 3 # Product-specific compile-time definitions. 6 # The generic product target doesn't have any hardware-specific pieces.
|
/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);
|
/external/eigen/Eigen/src/Geometry/ |
Homogeneous.h | 81 EIGEN_DEVICE_FUNC inline const Product<Homogeneous,Rhs> 85 return Product<Homogeneous,Rhs>(*this,rhs.derived()); 89 EIGEN_DEVICE_FUNC inline const Product<Lhs,Homogeneous> 93 return Product<Lhs,Homogeneous>(lhs.derived(),rhs); 97 EIGEN_DEVICE_FUNC inline const Product<Transform<Scalar,Dim,Mode,Options>, Homogeneous > 101 return Product<Transform<Scalar,Dim,Mode,Options>, Homogeneous>(lhs,rhs); 270 // FIXME investigate how to allow lazy evaluation of this product when possible 308 // FIXME investigate how to allow lazy evaluation of this product when possible 404 typedef Product<Lhs,LinearBlock,LazyProduct> LinearProduct; 409 struct product_evaluator<Product<Lhs, Rhs, LazyProduct>, ProductTag, HomogeneousShape, DenseShape [all...] |
/external/eigen/doc/examples/ |
matrixfree_cg.cpp | 37 Eigen::Product<MatrixReplacement,Rhs,Eigen::AliasFreeProduct> operator*(const Eigen::MatrixBase<Rhs>& x) const { 38 return Eigen::Product<MatrixReplacement,Rhs,Eigen::AliasFreeProduct>(*this, x.derived()); 62 typedef typename Product<MatrixReplacement,Rhs>::Scalar Scalar;
|