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

References

projects/compiler-rt/lib/builtins/fixunsxfdi.c
   43   return fb.u.low.all >> (63 - e);
projects/compiler-rt/lib/builtins/fixunsxfti.c
   36   tu_int r = fb.u.low.all;
projects/compiler-rt/lib/builtins/fixxfdi.c
   45   di_int r = fb.u.low.all;
projects/compiler-rt/lib/builtins/fixxfti.c
   36   ti_int r = fb.u.low.all;
projects/compiler-rt/lib/builtins/floattixf.c
   69   fb.u.low.all = (du_int)a;                // mantissa
projects/compiler-rt/lib/builtins/floatuntixf.c
   66   fb.u.low.all = (du_int)a;      // mantissa
projects/compiler-rt/lib/builtins/lshrdi3.c
   23   input.all = a;
   33   return result.all;
projects/compiler-rt/lib/builtins/ucmpdi2.c
   21   x.all = a;
   23   y.all = b;
projects/compiler-rt/lib/builtins/udivmoddi4.c
   31   n.all = a;
   33   d.all = b;
   72         *rem = r.all;
   83         *rem = r.all;
   94         *rem = n.all;
  114           return n.all;
  118         return q.all;
  152           *rem = n.all;
  188     const di_int s = (di_int)(d.all - r.all - 1) >> (n_udword_bits - 1);
  188     const di_int s = (di_int)(d.all - r.all - 1) >> (n_udword_bits - 1);
  190     r.all -= d.all & s;
  190     r.all -= d.all & s;
  192   q.all = (q.all << 1) | carry;
  192   q.all = (q.all << 1) | carry;
  194     *rem = r.all;
  195   return q.all;