Searched defs:quotient (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java73 * BigDecimal divideAndRound to increment the quotient. Use this constant
808 * divisor. The quotient is placed into quotient. The one word divisor is
814 int divideOneWord(int divisor, MutableBigInteger quotient) { argument
822 quotient.value[0] = q;
823 quotient.intLen = (q == 0) ? 0 : 1;
824 quotient.offset = 0;
828 if (quotient.value.length < intLen)
829 quotient.value = new int[intLen];
830 quotient
881 divide(MutableBigInteger b, MutableBigInteger quotient) argument
925 divide(long v, MutableBigInteger quotient) argument
953 divideMagnitude(int[] divisor, MutableBigInteger quotient) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java726 protected int mod(int a, int b, int quotient) { argument
728 return (a - quotient * b);

Completed in 312 milliseconds