Home
last modified time | relevance | path

Searched refs:Product (Results 1 – 25 of 48) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
DProduct.java38 public class Product extends AbstractStorelessUnivariateStatistic implements Serializable, Weighted… class
54 public Product() { in Product() method in Product
65 public Product(Product original) { in Product() method in Product
204 public Product copy() { in copy()
205 Product result = new Product(); in copy()
218 public static void copy(Product source, Product dest) { in copy()
/external/clang/test/CodeGenCXX/
Dtemp-order.cpp13 unsigned Product, Index; member
15 TempTracker() : Product(1), Index(0) {} in TempTracker()
30 TT.Product *= pow(P, ++TT.Index); in ~A()
53 return tt.Product; in f0()
65 return tt.Product; in f1()
77 return tt.Product; in f2()
91 return tt.Product; in f3()
103 return tt.Product; in f4()
117 return tt.Product; in f5()
129 return tt.Product; in f6()
[all …]
/external/llvm/unittests/Analysis/
DScalarEvolutionTest.cpp148 const SCEVAddRecExpr *Product = in TEST_F() local
150 ASSERT_TRUE(Product); in TEST_F()
151 ASSERT_EQ(Product->getNumOperands(), 9u); in TEST_F()
155 EXPECT_EQ(Product->getOperand(0), SE.getAddExpr(Sum)); in TEST_F()
164 EXPECT_EQ(Product->getOperand(1), SE.getAddExpr(Sum)); in TEST_F()
173 EXPECT_EQ(Product->getOperand(2), SE.getAddExpr(Sum)); in TEST_F()
186 EXPECT_EQ(Product->getOperand(3), SE.getAddExpr(Sum)); in TEST_F()
204 EXPECT_EQ(Product->getOperand(4), SE.getAddExpr(Sum)); in TEST_F()
217 EXPECT_EQ(Product->getOperand(5), SE.getAddExpr(Sum)); in TEST_F()
226 EXPECT_EQ(Product->getOperand(6), SE.getAddExpr(Sum)); in TEST_F()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/mws/
Dtest.py90 attributes = response._result[0].Product.AttributeSets.ItemAttributes
102 self.assertEqual(len(result.Products.Product), 1)
111 listings = response._result[0].Product.LowestOfferListings
/external/zlib/src/qnx/
Dpackage.qpg118 <QPM:Product>zlib</QPM:Product>
132 <QPM:Product>zlib-dev</QPM:Product>
/external/chromium-trace/catapult/telemetry/telemetry/
Ddecorators_unittest.py35 def Product(): function
37 self.assertEquals({'bar', 'bart', 'baz'}, Product._disabled_strings)
79 def Product(): function
81 self.assertEquals({'dot', 'product'}, Product._enabled_strings)
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DProduct.java18 public class Product { class
DInvoice.java25 public List<Product> product;
/external/chromium-trace/catapult/telemetry/third_party/pyserial/
Dlinux-product_info.patch10 + # USB Product Information
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DStatUtils.java29 import org.apache.commons.math.stat.descriptive.summary.Product;
49 private static final UnivariateStatistic PRODUCT = new Product();
/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp1107 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff); in strongSIVtest() local
1108 if (isKnownPredicate(CmpInst::ICMP_SGT, AbsDelta, Product)) { in strongSIVtest()
1691 const SCEV *Product = SE->getMulExpr(AbsCoeff, UpperBound); in weakZeroSrcSIVtest() local
1692 if (isKnownPredicate(CmpInst::ICMP_SGT, NewDelta, Product)) { in weakZeroSrcSIVtest()
1697 if (isKnownPredicate(CmpInst::ICMP_EQ, NewDelta, Product)) { in weakZeroSrcSIVtest()
1801 const SCEV *Product = SE->getMulExpr(AbsCoeff, UpperBound); in weakZeroDstSIVtest() local
1802 if (isKnownPredicate(CmpInst::ICMP_SGT, NewDelta, Product)) { in weakZeroDstSIVtest()
1807 if (isKnownPredicate(CmpInst::ICMP_EQ, NewDelta, Product)) { in weakZeroDstSIVtest()
2259 const SCEVConstant *getConstantPart(const SCEVMulExpr *Product) { in getConstantPart() argument
2260 for (unsigned Op = 0, Ops = Product->getNumOperands(); Op < Ops; Op++) { in getConstantPart()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
Dresponse.py540 class Product(ResponseElement): class
563 Products = Element(Product=ElementList(Product))
567 Product = Element(Product) variable in ProductsBulkOperationResult
/external/llvm/lib/Target/WebAssembly/
DWebAssembly.td51 // Minimal Viable Product.
/external/apache-xml/src/main/java/org/apache/xalan/res/
DXSLTInfo.properties27 # Product Version: Xalan-Java @impl.version@
/external/autotest/client/site_tests/network_ModemManagerSMSSignal/src/
Dfake-gsm11 # Product ID
/external/autotest/client/site_tests/network_ModemManagerSMS/src/
Dfake-gsm11 # Product ID
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp80 static bool MultiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product, in MultiplyOverflows() argument
84 Product = C1.smul_ov(C2, Overflow); in MultiplyOverflows()
86 Product = C1.umul_ov(C2, Overflow); in MultiplyOverflows()
813 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned); in commonIDivTransforms() local
814 if (!MultiplyOverflows(*C1, *C2, Product, IsSigned)) in commonIDivTransforms()
816 ConstantInt::get(I.getType(), Product)); in commonIDivTransforms()
/external/autotest/client/tests/kvm/steps/
DWin-Vista-64.steps29 # Product key (skip) 2
/external/curl/packages/EPM/
Dcurl.list.in13 # Product information
/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp90 Value *Product = Builder.CreateMul(Divisor, Quotient); in generatedUnsignedRemainderCode() local
91 Value *Remainder = Builder.CreateSub(Dividend, Product); in generatedUnsignedRemainderCode()
/external/chromium-trace/catapult/tracing/third_party/jszip/
DLICENSE.markdown327 A "User Product" is either (1) a "consumer product", which means any
340 "Installation Information" for a User Product means any methods,
342 and execute modified versions of a covered work in that User Product from
349 specifically for use in, a User Product, and the conveying occurs as
351 User Product is transferred to the recipient in perpetuity or for a
356 modified object code on the User Product (for example, the work has
362 the User Product in which it has been modified or installed. Access to a
/external/eigen/
DCOPYING.GPL297 A "User Product" is either (1) a "consumer product", which means any
310 "Installation Information" for a User Product means any methods,
312 and execute modified versions of a covered work in that User Product from
319 specifically for use in, a User Product, and the conveying occurs as
321 User Product is transferred to the recipient in perpetuity or for a
326 modified object code on the User Product (for example, the work has
332 the User Product in which it has been modified or installed. Access to a
/external/dnsmasq/
DCOPYING-v3297 A "User Product" is either (1) a "consumer product", which means any
310 "Installation Information" for a User Product means any methods,
312 and execute modified versions of a covered work in that User Product from
319 specifically for use in, a User Product, and the conveying occurs as
321 User Product is transferred to the recipient in perpetuity or for a
326 modified object code on the User Product (for example, the work has
332 the User Product in which it has been modified or installed. Access to a
/external/bison/
DNOTICE297 A "User Product" is either (1) a "consumer product", which means any
310 "Installation Information" for a User Product means any methods,
312 and execute modified versions of a covered work in that User Product from
319 specifically for use in, a User Product, and the conveying occurs as
321 User Product is transferred to the recipient in perpetuity or for a
326 modified object code on the User Product (for example, the work has
332 the User Product in which it has been modified or installed. Access to a
DCOPYING297 A "User Product" is either (1) a "consumer product", which means any
310 "Installation Information" for a User Product means any methods,
312 and execute modified versions of a covered work in that User Product from
319 specifically for use in, a User Product, and the conveying occurs as
321 User Product is transferred to the recipient in perpetuity or for a
326 modified object code on the User Product (for example, the work has
332 the User Product in which it has been modified or installed. Access to a

12