Searched refs:product (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/test/java/lang/StrictMath/ |
D | ExactArithTests.java | 134 int product = StrictMath.multiplyExact(x, y); in testIntegerExact() local 137 …fail("FAIL: int StrictMath.multiplyExact(" + x + " * " + y + ") = " + product + "; expected: " + m… in testIntegerExact() 231 long product = StrictMath.multiplyExact(x, y); in testLongExact() local 232 checkResult("long StrictMath.multiplyExact", x, y, product, resultBig); in testLongExact() 328 long product = StrictMath.multiplyExact(x, y); in testLongIntExact() local 329 checkResult("long StrictMath.multiplyExact", x, y, product, resultBig); in testLongIntExact()
|
/libcore/ojluni/src/main/java/java/math/ |
D | BigInteger.java | 577 long product = 0; in destructiveMulAdd() local 580 product = ylong * (x[i] & LONG_MASK) + carry; in destructiveMulAdd() 581 x[i] = (int)product; in destructiveMulAdd() 582 carry = product >>> 32; in destructiveMulAdd() 1628 long product = (x[i] & LONG_MASK) * yl + carry; in multiplyByInt() local 1629 rmag[rstart--] = (int)product; in multiplyByInt() 1630 carry = product >>> 32; in multiplyByInt() 1661 long product = (value[i] & LONG_MASK) * dl + carry; in multiply() local 1662 rmag[rstart--] = (int)product; in multiply() 1663 carry = product >>> 32; in multiply() [all …]
|
D | MutableBigInteger.java | 643 long product = (a[j] & LONG_MASK) * xLong + carry; in mulsub() local 644 long difference = q[offset] - product; in mulsub() 646 carry = (product >>> 32) in mulsub() 648 (((~(int)product) & LONG_MASK))) ? 1:0); in mulsub() 662 long product = (a[j] & LONG_MASK) * xLong + carry; in mulsubBorrow() local 663 long difference = q[offset--] - product; in mulsubBorrow() 664 carry = (product >>> 32) in mulsubBorrow() 666 (((~(int)product) & LONG_MASK))) ? 1:0); in mulsubBorrow() 1016 long product = (y.value[j+y.offset] & LONG_MASK) * in multiply() local 1018 z.value[k] = (int)product; in multiply() [all …]
|
D | BigDecimal.java | 1853 BigDecimal product = result.multiply(divisor); in divideToIntegralValue() local 1856 if (this.subtract(product).compareMagnitude(divisor) >= 0) { in divideToIntegralValue() 4803 long product = d0_lo * d1_lo; 4804 long d0 = product & LONG_MASK; 4805 long d1 = product >>> 32; 4806 product = d0_hi * d1_lo + d1; 4807 d1 = product & LONG_MASK; 4808 long d2 = product >>> 32; 4809 product = d0_lo * d1_hi + d1; 4810 d1 = product & LONG_MASK; [all …]
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | ExactArithTests.java | 110 int product = Math.multiplyExact(x, y); in testIntegerExact() local 113 … fail("FAIL: int Math.multiplyExact(" + x + " * " + y + ") = " + product + "; expected: " + m2); in testIntegerExact() 256 long product = Math.multiplyExact(x, y); in testLongExact() local 257 checkResult("long Math.multiplyExact", x, y, product, resultBig); in testLongExact() 385 long product = Math.multiplyExact(x, y); in testLongIntExact() local 386 checkResult("long Math.multiplyExact", x, y, product, resultBig); in testLongIntExact()
|
/libcore/support/src/test/java/tests/resources/x509/ |
D | default.cnf | 20 # "This product includes software developed by the OpenSSL Project 34 # "This product includes software developed by the OpenSSL Project 51 # This product includes cryptographic software written by Eric Young 52 # (eay@cryptsoft.com). This product includes software written by Tim
|
/libcore/ |
D | NOTICE | 10 This product includes software developed as part of 22 This product includes software developed at
|
/libcore/benchmarks/libs/ |
D | caliper.jar.txt | 140 names, trademarks, service marks, or product names of the Licensor,
|