HomeSort by: relevance | last modified time | path
    Searched defs:n_utword_bits (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
udivmodti4.c 29 const unsigned n_utword_bits = sizeof(tu_int) * CHAR_BIT; local in function:__udivmodti4
114 /* q.all = n.all << (n_utword_bits - sr); */
146 /* 2 <= sr <= n_utword_bits - 1
147 * q.all = n.all << (n_utword_bits - sr);
164 else // n_udword_bits + 1 <= sr <= n_utword_bits - 1
166 q.s.low = n.s.low << (n_utword_bits - sr);
167 q.s.high = (n.s.high << (n_utword_bits - sr)) |
189 * q.all = n.all << (n_utword_bits - sr);
209 * q.all = n.all << (n_utword_bits - sr);
211 * 1 <= sr <= n_utword_bits -
    [all...]

Completed in 37 milliseconds