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

References

projects/compiler-rt/lib/builtins/comparedf2.c
   48   const rep_t aAbs = aInt & absMask;
   49   const rep_t bAbs = bInt & absMask;
  103   const rep_t aAbs = aInt & absMask;
  104   const rep_t bAbs = bInt & absMask;
  131     const rep_t aAbs = toRep(a) & absMask;
  132     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/comparesf2.c
   48   const rep_t aAbs = aInt & absMask;
   49   const rep_t bAbs = bInt & absMask;
  103   const rep_t aAbs = aInt & absMask;
  104   const rep_t bAbs = bInt & absMask;
  131     const rep_t aAbs = toRep(a) & absMask;
  132     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/divdf3.c
   35     const rep_t aAbs = toRep(a) & absMask;
   36     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/divsf3.c
   35     const rep_t aAbs = toRep(a) & absMask;
   36     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/fp_add_impl.inc
   20   const rep_t aAbs = aRep & absMask;
   21   const rep_t bAbs = bRep & absMask;
projects/compiler-rt/lib/builtins/fp_fixint_impl.inc
   21   const rep_t aAbs = aRep & absMask;
projects/compiler-rt/lib/builtins/fp_fixuint_impl.inc
   19   const rep_t aAbs = aRep & absMask;
projects/compiler-rt/lib/builtins/fp_lib.h
  289     rep &= absMask;
projects/compiler-rt/lib/builtins/fp_mul_impl.inc
   29     const rep_t aAbs = toRep(a) & absMask;
   30     const rep_t bAbs = toRep(b) & absMask;