reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/builtins/udivmodti4.c
   95     q.s.low = 0;
   96     q.s.high = n.s.low << (n_udword_bits - sr);
  111         q.s.high = n.s.high >> sr;
  112         q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
  113         return q.all;
  124         q.s.low = 0;
  125         q.s.high = n.s.low;
  129         q.s.low = 0;
  130         q.s.high = n.s.low << (n_udword_bits - sr);
  134         q.s.low = n.s.low << (n_utword_bits - sr);
  135         q.s.high = (n.s.high << (n_utword_bits - sr)) |
  155       q.s.low = 0;
  157         q.s.high = n.s.low;
  163         q.s.high = n.s.low << (n_udword_bits - sr);
  176     r.s.low = (r.s.low << 1) | (q.s.high >> (n_udword_bits - 1));
  177     q.s.high = (q.s.high << 1) | (q.s.low >> (n_udword_bits - 1));
  177     q.s.high = (q.s.high << 1) | (q.s.low >> (n_udword_bits - 1));
  177     q.s.high = (q.s.high << 1) | (q.s.low >> (n_udword_bits - 1));
  178     q.s.low = (q.s.low << 1) | carry;
  178     q.s.low = (q.s.low << 1) | carry;
  189   q.all = (q.all << 1) | carry;
  189   q.all = (q.all << 1) | carry;
  192   return q.all;