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

References

projects/compiler-rt/lib/builtins/int_types.h
  110   return r.all;
projects/compiler-rt/lib/builtins/lshrti3.c
   25   input.all = a;
   35   return result.all;
projects/compiler-rt/lib/builtins/ucmpti2.c
   23   x.all = a;
   25   y.all = b;
projects/compiler-rt/lib/builtins/udivmodti4.c
   26   n.all = a;
   28   d.all = b;
   67         *rem = r.all;
   78         *rem = r.all;
   89         *rem = n.all;
  109           return n.all;
  113         return q.all;
  148           *rem = n.all;
  185     const ti_int s = (ti_int)(d.all - r.all - 1) >> (n_utword_bits - 1);
  185     const ti_int s = (ti_int)(d.all - r.all - 1) >> (n_utword_bits - 1);
  187     r.all -= d.all & s;
  187     r.all -= d.all & s;
  189   q.all = (q.all << 1) | carry;
  189   q.all = (q.all << 1) | carry;
  191     *rem = r.all;
  192   return q.all;