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

References

projects/compiler-rt/lib/builtins/udivmodti4.c
   65         r.s.high = n.s.high % d.s.high;
   66         r.s.low = 0;
   67         *rem = r.all;
   76         r.s.low = n.s.low;
   77         r.s.high = n.s.high & (d.s.high - 1);
   78         *rem = r.all;
   98     r.s.high = n.s.high >> sr;
   99     r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
  126         r.s.high = 0;
  127         r.s.low = n.s.high;
  131         r.s.high = n.s.high >> sr;
  132         r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
  137         r.s.high = 0;
  138         r.s.low = n.s.high >> (sr - n_udword_bits);
  158         r.s.high = 0;
  159         r.s.low = n.s.high;
  161         r.s.high = n.s.high >> sr;
  162         r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
  175     r.s.high = (r.s.high << 1) | (r.s.low >> (n_udword_bits - 1));
  175     r.s.high = (r.s.high << 1) | (r.s.low >> (n_udword_bits - 1));
  175     r.s.high = (r.s.high << 1) | (r.s.low >> (n_udword_bits - 1));
  176     r.s.low = (r.s.low << 1) | (q.s.high >> (n_udword_bits - 1));
  176     r.s.low = (r.s.low << 1) | (q.s.high >> (n_udword_bits - 1));
  185     const ti_int s = (ti_int)(d.all - r.all - 1) >> (n_utword_bits - 1);
  187     r.all -= d.all & s;
  191     *rem = r.all;