Searched refs:rstart (Results 1 – 2 of 2) sorted by relevance
743 int rstart = result.length-1; in add() local752 result[rstart--] = (int)sum; in add()759 if (carry == 0 && result == value && rstart == (x + offset)) in add()762 result[rstart--] = (int)sum; in add()768 result[rstart--] = (int)sum; in add()782 result[rstart--] = 1; in add()806 int rstart = result.length-1; in addShifted() local816 result[rstart--] = (int)sum; in addShifted()823 if (carry == 0 && result == value && rstart == (x + offset)) { in addShifted()827 result[rstart--] = (int)sum; in addShifted()[all …]
1626 int rstart = rmag.length - 1; in multiplyByInt() local1629 rmag[rstart--] = (int)product; in multiplyByInt()1635 rmag[rstart] = (int)carry; in multiplyByInt()1659 int rstart = rmag.length - 1; in multiply() local1662 rmag[rstart--] = (int)product; in multiply()1665 rmag[rstart] = (int)carry; in multiply()1668 rstart = rmag.length - 2; in multiply()1671 (rmag[rstart] & LONG_MASK) + carry; in multiply()1672 rmag[rstart--] = (int)product; in multiply()