• Home
  • Raw
  • Download

Lines Matching refs:sr

36     unsigned sr;  in __udivmodti4()  local
104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()
106 if (sr > n_udword_bits - 2) in __udivmodti4()
112 ++sr; 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()
135 sr = __builtin_ctzll(d.s.low); 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()
144 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low) in __udivmodti4()
172 q.s.low = (n.s.low << (n_utword_bits - sr)) & in __udivmodti4()
173 ((di_int)(int)(n_udword_bits - sr) >> (n_udword_bits-1)); in __udivmodti4()
174 q.s.high = ((n.s.low << ( n_udword_bits - sr)) & in __udivmodti4()
175 ((di_int)(int)(sr - n_udword_bits - 1) >> (n_udword_bits-1))) | in __udivmodti4()
176 (((n.s.high << (n_utword_bits - sr)) | in __udivmodti4()
177 (n.s.low >> (sr - n_udword_bits))) & in __udivmodti4()
178 ((di_int)(int)(n_udword_bits - sr) >> (n_udword_bits-1))); in __udivmodti4()
179 r.s.high = (n.s.high >> sr) & in __udivmodti4()
180 ((di_int)(int)(sr - n_udword_bits) >> (n_udword_bits-1)); in __udivmodti4()
181 r.s.low = ((n.s.high >> (sr - n_udword_bits)) & in __udivmodti4()
182 ((di_int)(int)(n_udword_bits - sr - 1) >> (n_udword_bits-1))) | in __udivmodti4()
183 (((n.s.high << (n_udword_bits - sr)) | in __udivmodti4()
184 (n.s.low >> sr)) & in __udivmodti4()
185 ((di_int)(int)(sr - n_udword_bits) >> (n_udword_bits-1))); in __udivmodti4()
193 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()
195 if (sr > n_udword_bits - 1) in __udivmodti4()
201 ++sr; 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()
219 ((di_int)(int)(sr - n_udword_bits) >> (n_udword_bits-1)); in __udivmodti4()
220 r.s.low = (n.s.high << (n_udword_bits - sr)) | in __udivmodti4()
221 ((n.s.low >> sr) & in __udivmodti4()
222 ((di_int)(int)(sr - n_udword_bits) >> (n_udword_bits-1))); in __udivmodti4()
232 for (; sr > 0; --sr) in __udivmodti4()