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 71 // Returns the dictionary key for storing product-related prefs.
72 std::string GetKeyName(std::string key, Product product) {
76 return key + "." + GetProductName(product) + "." + brand;
97 bool RlzValueStoreChromeOS::WritePingTime(Product product, int64 time) {
99 rlz_store_->SetString(GetKeyName(kPingTimeKey, product),
104 bool RlzValueStoreChromeOS::ReadPingTime(Product product, int64* time) {
107 return rlz_store_->GetString(GetKeyName(kPingTimeKey, product), &ping_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 92 // Get all the events reported by this product as a CGI string to append to
95 bool RLZ_LIB_API GetProductEventsAsCgi(Product product, char* unescaped_cgi,
99 // Some events can be product-independent (e.g: First search from home page),
101 // product independent events must still include the product which cares about
104 bool RLZ_LIB_API RecordProductEvent(Product product, AccessPoint point,
107 // Clear an event reported by this product. This should be called after a
110 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);
rlz_lib_clear.cc 19 bool ClearAllProductEvents(Product product) {
26 result = store->ClearAllProductEvents(product);
27 result &= store->ClearAllStatefulEvents(product);
31 void ClearProductState(Product product, const AccessPoint* access_points) {
37 // Delete all product specific state.
38 VERIFY(ClearAllProductEvents(product));
39 VERIFY(store->ClearPingTime(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 30 // HKCU\kLibKeyName\kEventsSubkeyName\GetProductName(product).
35 // The last ping time, per product is stored as:
36 // GetProductName(product) = <last ping time> @
49 std::wstring GetWideProductName(Product product) {
50 return ASCIIToWide(GetProductName(product));
83 const rlz_lib::Product* product,
90 if (product != NULL) {
91 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 bool Product::LaunchChrome(const base::FilePath& application_path) const {
74 bool Product::LaunchChromeAndWait(const base::FilePath& application_path,
115 bool Product::SetMsiMarker(bool system_install, bool set) const
    [all...]
user_experiment.h 21 class Product;
62 const Product& product,
installer_state.h 19 #include "chrome/installer/util/product.h"
38 typedef std::vector<Product*> Products;
82 // Adds a product constructed on the basis of |state|, setting this object's
83 // msi flag if |state| is msi-installed. Returns the product that was added,
86 Product* AddProductFromState(BrowserDistribution::Type type,
89 // Returns the product that was added, or NULL if |product| is incompatible
90 // with this object. Ownership of |product| is taken by this object, while
92 Product* AddProduct(scoped_ptr<Product>* product)
    [all...]
product.h 25 class Product;
28 // Represents an installation of a specific product which has a one-to-one
29 // relation to a BrowserDistribution. A product has registry settings, related
31 // the files on disk. The Package may be shared with other Product instances,
32 // so only the last Product to be uninstalled should remove the package.
33 // Right now there are no classes that derive from Product, but in
37 class Product {
39 explicit Product(BrowserDistribution* distribution);
41 ~Product();
140 DISALLOW_COPY_AND_ASSIGN(Product);
    [all...]
installer_state.cc 27 #include "chrome/installer/util/product.h"
47 const ProductState* product = local
50 if (product == NULL) {
54 if (!product->channel().Equals(binaries->channel())) {
117 Product* p = AddProductFromPreferences(
124 Product* p = AddProductFromPreferences(
154 Product* p = AddProductFromPreferences(
163 // Uninstall each product of type |type| listed below based on the
164 // presence or absence of |switch_name| in that product's uninstall
189 Product* p = AddProductFromPreferences
443 Product* product = AddProductInDirectory(NULL, &product_ptr); local
466 Product* product = AddProductInDirectory(&product_dir, &product_ptr); local
781 const Product* product = FindProduct(type); local
    [all...]
  /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...]
  /device/generic/mini-emulator-armv7-a-neon/
BoardConfig.mk 3 # Product-specific compile-time definitions.
  /external/chromium_org/chrome/installer/setup/
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 30 class Product;
38 const Product& product,
41 // Creates Version key for a product (if not already present) and sets the new
42 // product version as the last step. If |add_language_identifier| is true, the
68 // collection. When a product is installed, Google Update may write a
72 // product-specific value into the binaries' ClientState key.
138 // removes COM registration for a product's DelegateExecute verb handler.
144 const Product& product,
    [all...]
uninstall.h 26 class Product;
58 // This function uninstalls a product. Hence we came up with this awesome
65 // the product being uninstalled.
76 const Product& dist,
  /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.
  /external/chromium_org/chrome/browser/rlz/
rlz.h 58 static bool RecordProductEvent(rlz_lib::Product product,
86 // Clears all product state. Should be called when turning RLZ off. On other
87 // platforms, this is done by product uninstaller.
149 bool RecordProductEventImpl(rlz_lib::Product product,
165 virtual bool ScheduleRecordProductEvent(rlz_lib::Product product,
  /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...]

Completed in 473 milliseconds

1 2 3