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

References

projects/compiler-rt/lib/builtins/divdf3.c
   73     if (aAbs < implicitBit)
   75     if (bAbs < implicitBit)
   82   aSignificand |= implicitBit;
   83   bSignificand |= implicitBit;
  157   if (quotient < (implicitBit << 1)) {
projects/compiler-rt/lib/builtins/divsf3.c
   73     if (aAbs < implicitBit)
   75     if (bAbs < implicitBit)
   82   aSignificand |= implicitBit;
   83   bSignificand |= implicitBit;
  142   if (quotient < (implicitBit << 1)) {
projects/compiler-rt/lib/builtins/floatsidf.c
   43   result = (rep_t)(unsigned int)a << shift ^ implicitBit;
projects/compiler-rt/lib/builtins/floatsisf.c
   42     result = (rep_t)a << shift ^ implicitBit;
   45     result = (rep_t)a >> shift ^ implicitBit;
projects/compiler-rt/lib/builtins/floatunsidf.c
   34   result = (rep_t)a << shift ^ implicitBit;
projects/compiler-rt/lib/builtins/floatunsisf.c
   35     result = (rep_t)a << shift ^ implicitBit;
   38     result = (rep_t)a >> shift ^ implicitBit;
projects/compiler-rt/lib/builtins/fp_add_impl.inc
   89   aSignificand = (aSignificand | implicitBit) << 3;
   90   bSignificand = (bSignificand | implicitBit) << 3;
  111     if (aSignificand < implicitBit << 3) {
  112       const int shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);
  121     if (aSignificand & implicitBit << 4) {
projects/compiler-rt/lib/builtins/fp_fixint_impl.inc
   24   const rep_t significand = (aAbs & significandMask) | implicitBit;
projects/compiler-rt/lib/builtins/fp_fixuint_impl.inc
   22   const rep_t significand = (aAbs & significandMask) | implicitBit;
projects/compiler-rt/lib/builtins/fp_lib.h
  235   const int shift = rep_clz(*significand) - rep_clz(implicitBit);
projects/compiler-rt/lib/builtins/fp_mul_impl.inc
   67     if (aAbs < implicitBit)
   69     if (bAbs < implicitBit)
   76   aSignificand |= implicitBit;
   77   bSignificand |= implicitBit;
   88   if (productHi & implicitBit)