Home | History | Annotate | Download | only in dfp

Lines Matching defs:dividend

1579         int dividend[]; // current status of the dividend
1641 dividend = new int[mant.length+1]; // one extra digit needed
1647 dividend[mant.length] = 0;
1652 /* copy our mantissa into the dividend, initialize the
1656 dividend[i] = mant[i];
1666 // r = most sig 2 digits of dividend
1667 final int divMsb = dividend[mant.length]*RADIX+dividend[mant.length-1];
1685 /* subtract the remainder from the dividend */
1688 final int r = ((RADIX-1) - remainder[i]) + dividend[i] + rh;
1746 /* move the remainder into the dividend while left shifting */
1747 dividend[0] = 0;
1749 dividend[i + 1] = remainder[i];