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

1 2

  /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/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
  /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.
  /system/core/metricsd/uploader/proto/
chrome_user_metrics_extension.proto 35 // The product (i.e. end user application) for a given UMA log.
36 enum Product {
37 // Google Chrome product family.
40 // The product corresponding to this log. The field type is int32 instead of
41 // Product so that downstream users of the Chromium metrics component can
43 // (though they still need to add the new product to the server-side enum).
46 optional int32 product = 10 [default = 0];
  /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/generic/armv7-a-neon/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 148 const SCEVAddRecExpr *Product =
150 ASSERT_TRUE(Product);
151 ASSERT_EQ(Product->getNumOperands(), 9u);
155 EXPECT_EQ(Product->getOperand(0), SE.getAddExpr(Sum));
164 EXPECT_EQ(Product->getOperand(1), SE.getAddExpr(Sum));
173 EXPECT_EQ(Product->getOperand(2), SE.getAddExpr(Sum));
186 EXPECT_EQ(Product->getOperand(3), SE.getAddExpr(Sum));
204 EXPECT_EQ(Product->getOperand(4), SE.getAddExpr(Sum));
217 EXPECT_EQ(Product->getOperand(5), SE.getAddExpr(Sum));
226 EXPECT_EQ(Product->getOperand(6), SE.getAddExpr(Sum))
    [all...]
  /device/generic/arm64/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /device/generic/x86_64/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /build/target/board/generic_x86/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /build/target/board/generic_x86_64/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /device/generic/mips64/
BoardConfig.mk 3 # Product-specific compile-time definitions.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/mws/
test.py 90 attributes = response._result[0].Product.AttributeSets.ItemAttributes
102 self.assertEqual(len(result.Products.Product), 1)
111 listings = response._result[0].Product.LowestOfferListings
  /external/chromium-trace/catapult/telemetry/telemetry/
decorators_unittest.py 39 def Product():
43 decorators.GetDisabledAttributes(Product))
138 @decorators.Enabled('product')
139 @decorators.Enabled('product', 'dot')
140 def Product():
143 self.assertEquals({'dot', 'product'},
144 decorators.GetEnabledAttributes(Product))
  /build/target/board/generic/
BoardConfig.mk 3 # Product-specific compile-time definitions.
6 # The generic product target doesn't have any hardware-specific pieces.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 29 import org.apache.commons.math.stat.descriptive.summary.Product;
49 private static final UnivariateStatistic PRODUCT = new Product();
148 * Returns the product of the entries in the input array, or
154 * @return the product of the values or Double.NaN if the array is empty
157 public static double product(final double[] values) { method in class:StatUtils
158 return PRODUCT.evaluate(values);
162 * Returns the product of the entries in the specified portion of
171 * @return the product of the values or Double.NaN if length = 0
175 public static double product(final double[] values, final int begin method in class:StatUtils
    [all...]
  /build/core/tasks/
vendor_module_check.mk 59 $(error Error: Product "$(TARGET_PRODUCT)" cannot have overlay in vendor tree: \
76 "$(ALL_MODULES.$(m).OWNER)" in product "$(TARGET_PRODUCT)"))\
92 in product "$(TARGET_PRODUCT)" being installed to \
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-p2-director-plugin/0.20.0/
tycho-p2-director-plugin-0.20.0.jar 
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
response.py 540 class Product(ResponseElement):
563 Products = Element(Product=ElementList(Product))
567 Product = Element(Product)
  /device/google/marlin/marlin/
BoardConfig.mk 3 # Product-specific compile-time definitions

Completed in 1151 milliseconds

1 2