Lines Matching refs:r3
20 lwz r5,0(r3) # get the dividend into r5/r6
21 lwz r6,4(r3)
56 4: stw r7,0(r3) # return the quotient in *r3
57 stw r8,4(r3)
58 mr r3,r6 # return the remainder in r3
80 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
82 sraw r7,r3,r7 # t2 = MSW >> (count-32)
85 sraw r3,r3,r5 # MSW = MSW >> count
92 slw r3,r3,r5 # MSW = count > 31 ? 0 : MSW << count
96 or r3,r3,r6 # MSW |= t1
98 or r3,r3,r7 # MSW |= t2
106 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
107 srw r7,r3,r7 # t2 = count < 32 ? 0 : MSW >> (count-32)
109 srw r3,r3,r5 # MSW = MSW >> count