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

References

projects/compiler-rt/lib/builtins/udivmoddi4.c
   70         r.s.high = n.s.high % d.s.high;
   71         r.s.low = 0;
   72         *rem = r.all;
   81         r.s.low = n.s.low;
   82         r.s.high = n.s.high & (d.s.high - 1);
   83         *rem = r.all;
  103     r.s.high = n.s.high >> sr;
  104     r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr);
  130         r.s.high = 0;
  131         r.s.low = n.s.high;
  135         r.s.high = n.s.high >> sr;
  136         r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr);
  141         r.s.high = 0;
  142         r.s.low = n.s.high >> (sr - n_uword_bits);
  161         r.s.high = 0;
  162         r.s.low = n.s.high;
  165         r.s.high = n.s.high >> sr;
  166         r.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr);
  178     r.s.high = (r.s.high << 1) | (r.s.low >> (n_uword_bits - 1));
  178     r.s.high = (r.s.high << 1) | (r.s.low >> (n_uword_bits - 1));
  178     r.s.high = (r.s.high << 1) | (r.s.low >> (n_uword_bits - 1));
  179     r.s.low = (r.s.low << 1) | (q.s.high >> (n_uword_bits - 1));
  179     r.s.low = (r.s.low << 1) | (q.s.high >> (n_uword_bits - 1));
  188     const di_int s = (di_int)(d.all - r.all - 1) >> (n_udword_bits - 1);
  190     r.all -= d.all & s;
  194     *rem = r.all;