Lines Matching refs:n

28     udwords n;  in __udivmoddi4()  local
29 n.all = a; in __udivmoddi4()
36 if (n.s.high == 0) in __udivmoddi4()
45 *rem = n.s.low % d.s.low; in __udivmoddi4()
46 return n.s.low / d.s.low; in __udivmoddi4()
53 *rem = n.s.low; in __udivmoddi4()
66 *rem = n.s.high % d.s.low; in __udivmoddi4()
67 return n.s.high / d.s.low; in __udivmoddi4()
70 if (n.s.low == 0) in __udivmoddi4()
78 r.s.high = n.s.high % d.s.high; in __udivmoddi4()
82 return n.s.high / d.s.high; in __udivmoddi4()
92 r.s.low = n.s.low; in __udivmoddi4()
93 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
96 return n.s.high >> __builtin_ctz(d.s.high); in __udivmoddi4()
102 sr = __builtin_clz(d.s.high) - __builtin_clz(n.s.high); in __udivmoddi4()
107 *rem = n.all; in __udivmoddi4()
114 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
116 r.s.high = n.s.high >> sr; in __udivmoddi4()
117 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
130 *rem = n.s.low & (d.s.low - 1); in __udivmoddi4()
132 return n.all; in __udivmoddi4()
134 q.s.high = n.s.high >> sr; in __udivmoddi4()
135 q.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
142 sr = 1 + n_uword_bits + __builtin_clz(d.s.low) - __builtin_clz(n.s.high); in __udivmoddi4()
150 q.s.high = n.s.low; in __udivmoddi4()
152 r.s.low = n.s.high; in __udivmoddi4()
157 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
158 r.s.high = n.s.high >> sr; in __udivmoddi4()
159 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()
163 q.s.low = n.s.low << (n_udword_bits - sr); in __udivmoddi4()
164 q.s.high = (n.s.high << (n_udword_bits - sr)) | in __udivmoddi4()
165 (n.s.low >> (sr - n_uword_bits)); in __udivmoddi4()
167 r.s.low = n.s.high >> (sr - n_uword_bits); in __udivmoddi4()
176 sr = __builtin_clz(d.s.high) - __builtin_clz(n.s.high); in __udivmoddi4()
181 *rem = n.all; in __udivmoddi4()
190 q.s.high = n.s.low; in __udivmoddi4()
192 r.s.low = n.s.high; in __udivmoddi4()
196 q.s.high = n.s.low << (n_uword_bits - sr); in __udivmoddi4()
197 r.s.high = n.s.high >> sr; in __udivmoddi4()
198 r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); in __udivmoddi4()