Lines Matching refs:Q
28 | Step 2. Set L := expo(X)-expo(Y), k := 0, Q := 0.
37 | 3.2 If R > Y, then { R := R - Y, Q := Q + 1}
39 | 3.4 k := k + 1, j := j - 1, Q := 2Q, R := 2R. Go to
50 | Q := Q + 1, Y := signY*Y }. Go to Step 6.
51 | 5.3 This is the tricky case of R = Y/2. If Q is odd,
52 | then { Q := Q + 1, signX := -signX }.
58 | Step 8. Return signQ, last 7 bits of Q, and R as required.
60 | Step 9. At this point, R = 2^(-j)*X - Q Y = Y. Thus,
61 | X = 2^(j)*(Q+1)Y. set Q := 2^(j)*(Q+1),
62 | R := 0. Return signQ, last 7 bits of Q, and R.
161 movew %d1,SignQ(%a6) | ...sign(Q) obtained
207 clrl %d3 | ...D3 is Q
208 moveal #0,%a1 | ...A1 is k; j+k=L, Q=0
219 |..At this point R = 2^(-L)X; Q = 0; k = 0; and k+j = L
245 addql #1,%d3 | ...Q := Q + 1
252 addl %d3,%d3 | ...Q := 2Q
351 addql #1,%d3 | ...Q := Q + 1
361 |..Get Q
365 movew SignQ(%a6),%d6 | ...D6 is sign(Q)
368 andil #0x0000007F,%d3 | ...7 bits of Q
369 orl %d6,%d3 | ...sign and bits of Q
374 fmovel %d6,%fpsr | ...put Q in fpsr
391 |..R = 2^(-j)X - Q Y = Y, thus R = 0 and quotient = 2^j (Q+1)
408 |..Check parity of Q
412 beq Fix_Sign | ...Q is even
414 |..Q is odd, Q := Q + 1, signX := -signX