Lines Matching refs:n

30   udwords n;  in __udivmoddi4()  local
31 n.all = a; in __udivmoddi4()
38 if (n.s.high == 0) { in __udivmoddi4()
44 *rem = n.s.low % d.s.low; in __udivmoddi4()
45 return n.s.low / d.s.low; in __udivmoddi4()
51 *rem = n.s.low; in __udivmoddi4()
61 *rem = n.s.high % d.s.low; in __udivmoddi4()
62 return n.s.high / d.s.low; in __udivmoddi4()
65 if (n.s.low == 0) { in __udivmoddi4()
70 r.s.high = n.s.high % d.s.high; in __udivmoddi4()
74 return n.s.high / d.s.high; in __udivmoddi4()
81 r.s.low = n.s.low; in __udivmoddi4()
82 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
85 return n.s.high >> ctzsi(d.s.high); in __udivmoddi4()
90 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
94 *rem = n.all; in __udivmoddi4()
101 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
103 r.s.high = n.s.high >> sr; in __udivmoddi4()
104 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
112 *rem = n.s.low & (d.s.low - 1); in __udivmoddi4()
114 return n.all; in __udivmoddi4()
116 q.s.high = n.s.high >> sr; in __udivmoddi4()
117 q.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
123 sr = 1 + n_uword_bits + clzsi(d.s.low) - clzsi(n.s.high); in __udivmoddi4()
129 q.s.high = n.s.low; in __udivmoddi4()
131 r.s.low = n.s.high; in __udivmoddi4()
134 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
135 r.s.high = n.s.high >> sr; in __udivmoddi4()
136 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
138 q.s.low = n.s.low << (n_udword_bits - sr); in __udivmoddi4()
139 q.s.high = (n.s.high << (n_udword_bits - sr)) | in __udivmoddi4()
140 (n.s.low >> (sr - n_uword_bits)); in __udivmoddi4()
142 r.s.low = n.s.high >> (sr - n_uword_bits); in __udivmoddi4()
148 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
152 *rem = n.all; in __udivmoddi4()
160 q.s.high = n.s.low; in __udivmoddi4()
162 r.s.low = n.s.high; in __udivmoddi4()
164 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
165 r.s.high = n.s.high >> sr; in __udivmoddi4()
166 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()