HomeSort by relevance Sort by last modified time
    Searched refs:n_udword_bits (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/builtins/
udivmodti4.c 28 const unsigned n_udword_bits = sizeof(du_int) * CHAR_BIT; local
105 /* 0 <= sr <= n_udword_bits - 2 or sr large */
106 if (sr > n_udword_bits - 2)
113 /* 1 <= sr <= n_udword_bits - 1 */
116 q.s.high = n.s.low << (n_udword_bits - sr);
119 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
137 q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
144 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low)
150 if (sr == n_udword_bits)
157 else if (sr < n_udword_bits) // 2 <= sr <= n_udword_bits -
    [all...]
udivmoddi4.c 27 const unsigned n_udword_bits = sizeof(du_int) * CHAR_BIT; local
112 /* q.all = n.all << (n_udword_bits - sr); */
143 /* 2 <= sr <= n_udword_bits - 1
144 * q.all = n.all << (n_udword_bits - sr);
161 else // n_uword_bits + 1 <= sr <= n_udword_bits - 1
163 q.s.low = n.s.low << (n_udword_bits - sr);
164 q.s.high = (n.s.high << (n_udword_bits - sr)) |
186 /* q.all = n.all << (n_udword_bits - sr); */
204 * q.all = n.all << (n_udword_bits - sr);
206 * 1 <= sr <= n_udword_bits -
    [all...]

Completed in 102 milliseconds