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

References

projects/compiler-rt/lib/builtins/floatsisf.c
   46     rep_t round = (rep_t)a << (typeWidth - shift);
projects/compiler-rt/lib/builtins/floatunsisf.c
   39     rep_t round = (rep_t)a << (typeWidth - shift);
projects/compiler-rt/lib/builtins/fp_add_impl.inc
   96     if (align < typeWidth) {
   97       const bool sticky = (bSignificand << (typeWidth - align)) != 0;
  136     const bool sticky = (aSignificand << (typeWidth - shift)) != 0;
projects/compiler-rt/lib/builtins/fp_lib.h
  241   *hi = *hi << count | *lo >> (typeWidth - count);
  247   if (count < typeWidth) {
  248     const bool sticky = (*lo << (typeWidth - count)) != 0;
  249     *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
  251   } else if (count < 2 * typeWidth) {
  252     const bool sticky = *hi << (2 * typeWidth - count) | *lo;
  253     *lo = *hi >> (count - typeWidth) | sticky;
projects/compiler-rt/lib/builtins/fp_mul_impl.inc
  105     if (shift >= typeWidth)