Lines Matching refs:n
30 utwords n; in __udivmodti4() local
31 n.all = a; in __udivmodti4()
38 if (n.s.high == 0) in __udivmodti4()
47 *rem = n.s.low % d.s.low; in __udivmodti4()
48 return n.s.low / d.s.low; in __udivmodti4()
55 *rem = n.s.low; in __udivmodti4()
68 *rem = n.s.high % d.s.low; in __udivmodti4()
69 return n.s.high / d.s.low; in __udivmodti4()
72 if (n.s.low == 0) in __udivmodti4()
80 r.s.high = n.s.high % d.s.high; in __udivmodti4()
84 return n.s.high / d.s.high; in __udivmodti4()
94 r.s.low = n.s.low; in __udivmodti4()
95 r.s.high = n.s.high & (d.s.high - 1); in __udivmodti4()
98 return n.s.high >> __builtin_ctzll(d.s.high); in __udivmodti4()
104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()
109 *rem = n.all; in __udivmodti4()
116 q.s.high = n.s.low << (n_udword_bits - sr); in __udivmodti4()
118 r.s.high = n.s.high >> sr; in __udivmodti4()
119 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); in __udivmodti4()
132 *rem = n.s.low & (d.s.low - 1); in __udivmodti4()
134 return n.all; in __udivmodti4()
136 q.s.high = n.s.high >> sr; in __udivmodti4()
137 q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); in __udivmodti4()
145 - __builtin_clzll(n.s.high); in __udivmodti4()
172 q.s.low = (n.s.low << (n_utword_bits - sr)) & in __udivmodti4()
174 q.s.high = ((n.s.low << ( n_udword_bits - sr)) & in __udivmodti4()
176 (((n.s.high << (n_utword_bits - sr)) | in __udivmodti4()
177 (n.s.low >> (sr - n_udword_bits))) & in __udivmodti4()
179 r.s.high = (n.s.high >> sr) & in __udivmodti4()
181 r.s.low = ((n.s.high >> (sr - n_udword_bits)) & in __udivmodti4()
183 (((n.s.high << (n_udword_bits - sr)) | in __udivmodti4()
184 (n.s.low >> sr)) & in __udivmodti4()
193 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()
198 *rem = n.all; in __udivmodti4()
205 q.s.high = n.s.low << (n_udword_bits - sr); in __udivmodti4()
218 r.s.high = (n.s.high >> sr) & in __udivmodti4()
220 r.s.low = (n.s.high << (n_udword_bits - sr)) | in __udivmodti4()
221 ((n.s.low >> sr) & in __udivmodti4()