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

1 2 3

  /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/rlz/mac/lib/
rlz_value_store_mac.h 23 virtual bool WritePingTime(Product product, int64 time) OVERRIDE;
24 virtual bool ReadPingTime(Product product, int64* time) OVERRIDE;
25 virtual bool ClearPingTime(Product product) OVERRIDE;
34 virtual bool AddProductEvent(Product product, const char* event_rlz) OVERRIDE;
35 virtual bool ReadProductEvents(Product product,
    [all...]
  /external/chromium_org/rlz/chromeos/lib/
rlz_value_store_chromeos.h 36 virtual bool WritePingTime(Product product, int64 time) OVERRIDE;
37 virtual bool ReadPingTime(Product product, int64* time) OVERRIDE;
38 virtual bool ClearPingTime(Product product) OVERRIDE;
47 virtual bool AddProductEvent(Product product, const char* event_rlz) OVERRIDE;
48 virtual bool ReadProductEvents(Product product,
    [all...]
rlz_value_store_chromeos.cc 23 // Product names.
69 // Returns the dictionary key for storing product-related prefs.
70 std::string GetKeyName(std::string key, Product product) {
74 return key + "." + GetProductName(product) + "." + brand;
95 bool RlzValueStoreChromeOS::WritePingTime(Product product, int64 time) {
97 rlz_store_->SetString(GetKeyName(kPingTimeKey, product),
102 bool RlzValueStoreChromeOS::ReadPingTime(Product product, int64* time)
    [all...]
  /external/chromium_org/rlz/lib/
rlz_value_store.h 40 virtual bool WritePingTime(Product product, int64 time) = 0;
41 virtual bool ReadPingTime(Product product, int64* time) = 0;
42 virtual bool ClearPingTime(Product product) = 0;
52 // Product events.
53 // Stores |event_rlz| for product |product| as product event
    [all...]
financial_ping.h 27 static bool FormRequest(Product product, const AccessPoint* access_points,
40 static bool IsPingTime(Product product, bool no_delay);
43 static bool UpdateLastPingTime(Product product);
47 static bool ClearLastPingTime(Product product);
rlz_lib.h 76 // Get all the events reported by this product as a CGI string to append to
79 bool RLZ_LIB_API GetProductEventsAsCgi(Product product, char* unescaped_cgi,
83 // Some events can be product-independent (e.g: First search from home page),
85 // product independent events must still include the product which cares about
88 bool RLZ_LIB_API RecordProductEvent(Product product, AccessPoint point,
91 // Clear an event reported by this product. This should be called after a
94 bool RLZ_LIB_API ClearProductEvent(Product product, AccessPoint point
    [all...]
lib_values.h 46 // - The product signature: kProductSignatureCgiVariable = <signature>
47 // - The product brand: kProductBrandCgiVariable = <brand>
48 // - The product installation ID: kProductIdCgiVariable = <id>
95 const char* GetProductName(Product product);
  /external/chromium_org/rlz/win/lib/
rlz_value_store_registry.h 20 virtual bool WritePingTime(Product product, int64 time) OVERRIDE;
21 virtual bool ReadPingTime(Product product, int64* time) OVERRIDE;
22 virtual bool ClearPingTime(Product product) OVERRIDE;
31 virtual bool AddProductEvent(Product product, const char* event_rlz) OVERRIDE;
32 virtual bool ReadProductEvents(Product product,
    [all...]
rlz_value_store_registry.cc 28 // HKCU\kLibKeyName\kEventsSubkeyName\GetProductName(product).
33 // The last ping time, per product is stored as:
34 // GetProductName(product) = <last ping time> @
47 std::wstring GetWideProductName(Product product) {
48 return ASCIIToWide(GetProductName(product));
81 const rlz_lib::Product* product,
88 if (product != NULL) {
89 std::string product_name = GetProductName(*product);
    [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...]
user_experiment.h 22 class Product;
63 const Product& product,
installer_state.h 19 #include "chrome/installer/util/product.h"
36 typedef std::vector<Product*> Products;
80 // Adds a product constructed on the basis of |state|, setting this object's
81 // msi flag if |state| is msi-installed. Returns the product that was added,
84 Product* AddProductFromState(BrowserDistribution::Type type,
87 // Returns the product that was added, or NULL if |product| is incompatible
88 // with this object. Ownership of |product| is taken by this object, while
90 Product* AddProduct(scoped_ptr<Product>* product)
    [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...]
installer_state.cc 27 #include "chrome/installer/util/product.h"
54 const ProductState* product = local
56 if (product == NULL) {
61 if (!product->channel().Equals(package->channel())) {
123 Product* p = AddProductFromPreferences(
129 Product* p = AddProductFromPreferences(
136 Product* p = AddProductFromPreferences(
169 Product* p = AddProductFromPreferences(
178 // Uninstall each product of type |type| listed below based on the
179 // presence or absence of |switch_name| in that product's uninstal
465 Product* product = AddProductInDirectory(NULL, &product_ptr); local
488 Product* product = AddProductInDirectory(&product_dir, &product_ptr); local
755 const Product* product = FindProduct(type); local
    [all...]
  /external/chromium/chrome/browser/rlz/
rlz.h 43 static bool RecordProductEvent(rlz_lib::Product product,
52 // Clear all events reported by this product. In Chrome this will be called
54 static bool ClearAllProductEvents(rlz_lib::Product product);
  /external/chromium_org/rlz/win/dll/
exports.cc 11 RLZ_DLL_EXPORT bool RecordProductEvent(rlz_lib::Product product,
14 return rlz_lib::RecordProductEvent(product, point, event_id);
17 RLZ_DLL_EXPORT bool GetProductEventsAsCgi(rlz_lib::Product product,
20 return rlz_lib::GetProductEventsAsCgi(product, unescaped_cgi,
23 RLZ_DLL_EXPORT bool ClearAllProductEvents(rlz_lib::Product product) {
24 return rlz_lib::ClearAllProductEvents(product);
27 RLZ_DLL_EXPORT bool ClearProductEvent(rlz_lib::Product product
    [all...]
  /build/target/board/emulator/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /external/chromium_org/chrome/installer/setup/
uninstall.h 26 class Product;
44 // This function uninstalls a product. Hence we came up with this awesome
61 const Product& dist,
install.h 17 #include "chrome/installer/util/product.h"
77 const Product& product,
87 const Product& product,
120 // |chrome| The installed product (must be a browser).
122 const Product& chrome);
130 // |chrome| The installed product (must be a browser).
132 const Product& chrome,
install_worker.h 28 class Product;
36 const Product& product,
39 // Creates Version key for a product (if not already present) and sets the new
40 // product version as the last step. If |add_language_identifier| is true, the
65 // collection. When a product is installed, Google Update may write a
69 // product-specific value into the binaries' ClientState key.
141 const Product& product,
145 // removes COM registration for a product's DelegateExecute verb handler
    [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/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/chromium_org/chrome/browser/rlz/
rlz_extension_api.h 58 rlz_lib::Product product_;
  /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.

Completed in 725 milliseconds

1 2 3