Searched refs:dl (Results 1 – 2 of 2) sorted by relevance
1539 int dl = divisor[1]; in divideMagnitude() local1574 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK); in divideMagnitude()1580 estProduct -= (dl & LONG_MASK); in divideMagnitude()1630 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK); in divideMagnitude()1636 estProduct -= (dl & LONG_MASK); in divideMagnitude()1714 int dl = (int)(ldivisor & LONG_MASK);1749 long estProduct = (dl & LONG_MASK) * (qhat & LONG_MASK);1755 estProduct -= (dl & LONG_MASK);1765 int borrow = mulsubLong(rem.value, dh, dl, qhat, j + rem.offset);1770 divaddLong(dh,dl, rem.value, j + 1 + rem.offset);[all …]
1653 long dl = v & LONG_MASK; // lower order bits in multiply() local1661 long product = (value[i] & LONG_MASK) * dl + carry; in multiply()