Searched defs:divide (Results 1 - 6 of 6) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DDefaultExprFactory.java65 public Divide divide (Expression left, Expression right) method in class:DefaultExprFactory
68 } // divide
H A DExprFactory.java49 Divide divide (Expression left, Expression right); method in interface:ExprFactory
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java223 * from divide().
881 MutableBigInteger divide(MutableBigInteger b, MutableBigInteger quotient) { method in class:MutableBigInteger
883 throw new ArithmeticException("BigInteger divide by zero");
925 long divide(long v, MutableBigInteger quotient) { method in class:MutableBigInteger
927 throw new ArithmeticException("BigInteger divide by zero");
1120 MutableBigInteger r = a.divide(b, q);
1257 return result.divide(p, temp1);
1425 MutableBigInteger r = b.divide(a, q);
1437 r = a.divide(b, q);
1457 r = b.divide(
[all...]
H A DBigDecimal.java69 * not used and thus irrelevant. In the case of divide, the exact
134 * arithmetic results; except that an exact divide may have to use a
1357 * <p>The new {@link #divide(BigDecimal, int, RoundingMode)} method
1379 public BigDecimal divide(BigDecimal divisor, int scale, int roundingMode) { method in class:BigDecimal
1382 * since divideAndRound uses divide to generate a value whose
1437 r = mdividend.divide(ldivisor, mq);
1442 mr = mdividend.divide(mdivisor, mq);
1512 public BigDecimal divide(BigDecimal divisor, int scale, RoundingMode roundingMode) { method in class:BigDecimal
1513 return divide(divisor, scale, roundingMode.oldMode);
1522 * <p>The new {@link #divide(BigDecima
1543 public BigDecimal divide(BigDecimal divisor, int roundingMode) { method in class:BigDecimal
1562 public BigDecimal divide(BigDecimal divisor, RoundingMode roundingMode) { method in class:BigDecimal
1580 public BigDecimal divide(BigDecimal divisor) { method in class:BigDecimal
1647 public BigDecimal divide(BigDecimal divisor, MathContext mc) { method in class:BigDecimal
[all...]
H A DBigInteger.java1337 public BigInteger divide(BigInteger val) { method in class:BigInteger
1342 a.divide(b, q);
1362 MutableBigInteger r = a.divide(b, q);
1381 return a.divide(b, q).toBigInteger(this.signum);
1741 MutableBigInteger r= a2.divide(b2, q);
2639 MutableBigInteger r = a.divide(b, q);
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp43 // Compute magic multiplier and shift constant for converting a 32 bit divide
158 // Attempt the jint constant divide -> multiply transform found in
211 // Compute magic multiplier and shift constant for converting a 64 bit divide
412 // Attempt the jlong constant divide -> multiply transform found in
490 // prevent hoisting the divide above an unsafe test.
589 // prevent hoisting the divide above an unsafe test.
656 // prevent hoisting the divide above an unsafe test.
680 // If divisor is a constant and not zero, divide them numbers
744 // prevent hoisting the divide above an unsafe test.
774 // If divisor is a constant and not zero, divide the
941 Node *divide = phase->transform(result); local
1114 Node *divide = phase->transform(result); local
[all...]

Completed in 53 milliseconds