Searched refs:dl (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/math/ |
D | MutableBigInteger.java | 1544 int dl = divisor[1]; in divideMagnitude() local 1579 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK); in divideMagnitude() 1585 estProduct -= (dl & LONG_MASK); in divideMagnitude() 1635 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK); in divideMagnitude() 1641 estProduct -= (dl & LONG_MASK); in divideMagnitude() 1719 int dl = (int)(ldivisor & LONG_MASK); 1754 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK); 1760 estProduct -= (dl & LONG_MASK); 1770 int borrow = mulsubLong(rem.value, dh, dl, qhat, j + rem.offset); 1775 divaddLong(dh,dl, rem.value, j + 1 + rem.offset); [all …]
|
D | BigInteger.java | 1769 long dl = v & LONG_MASK; // lower order bits in multiply() local 1777 long product = (value[i] & LONG_MASK) * dl + carry; in multiply()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Base64.java | 815 int dl = decodeBlock(src, sp, sl, dst, dp, isURL, isMIME); in decode0() local 820 int chars_decoded = ((dl + 2) / 3) * 4; in decode0() 823 dp += dl; in decode0() 963 int dl = linemax <= 0 ? buf.length : buf.length - linepos; in write() local 964 int sl = off + Math.min(nBits24, dl / 4) * 3; in write()
|