Lines Matching full:dividend
9 * dividend -- the thing being divided
21 * R -- the remainder so far -- initially == the dividend
27 * current estimate for non-large dividend is
29 * a large dividend is one greater than 2ˆ(31-TOPBITS) and takes a
35 define(dividend, `%o0') macro
92 orcc divisor,dividend,%g0 ! are either dividend or divisor negative
94 xor divisor,dividend,SIGN ! record sign of result in sign of SIGN
97 tst dividend
102 ! dividend < 0
103 neg dividend
114 orcc divisor,dividend,%g0 ! are either dividend or divisor negative
116 mov dividend,SIGN ! record sign of result in sign of SIGN
119 tst dividend
124 ! dividend < 0
125 neg dividend
133 mov dividend,R
140 ! Here, the dividend is >= 2ˆ(31-N) or so. We must be careful here,