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

References

projects/compiler-rt/lib/builtins/comparedf2.c
   46   const srep_t aInt = toRep(a);
   47   const srep_t bInt = toRep(b);
  101   const srep_t aInt = toRep(a);
  102   const srep_t bInt = toRep(b);
  131     const rep_t aAbs = toRep(a) & absMask;
  132     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/comparesf2.c
   46   const srep_t aInt = toRep(a);
   47   const srep_t bInt = toRep(b);
  101   const srep_t aInt = toRep(a);
  102   const srep_t bInt = toRep(b);
  131     const rep_t aAbs = toRep(a) & absMask;
  132     const rep_t bAbs = toRep(b) & absMask;
projects/compiler-rt/lib/builtins/divdf3.c
   23   const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
   24   const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
   25   const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
   25   const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
   27   rep_t aSignificand = toRep(a) & significandMask;
   28   rep_t bSignificand = toRep(b) & significandMask;
   35     const rep_t aAbs = toRep(a) & absMask;
   36     const rep_t bAbs = toRep(b) & absMask;
   40       return fromRep(toRep(a) | quietBit);
   43       return fromRep(toRep(b) | quietBit);
projects/compiler-rt/lib/builtins/divsf3.c
   23   const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
   24   const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
   25   const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
   25   const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
   27   rep_t aSignificand = toRep(a) & significandMask;
   28   rep_t bSignificand = toRep(b) & significandMask;
   35     const rep_t aAbs = toRep(a) & absMask;
   36     const rep_t bAbs = toRep(b) & absMask;
   40       return fromRep(toRep(a) | quietBit);
   43       return fromRep(toRep(b) | quietBit);
projects/compiler-rt/lib/builtins/fp_add_impl.inc
   18   rep_t aRep = toRep(a);
   19   rep_t bRep = toRep(b);
   28       return fromRep(toRep(a) | quietBit);
   31       return fromRep(toRep(b) | quietBit);
   35       if ((toRep(a) ^ toRep(b)) == signBit)
   35       if ((toRep(a) ^ toRep(b)) == signBit)
   50         return fromRep(toRep(a) & toRep(b));
   50         return fromRep(toRep(a) & toRep(b));
projects/compiler-rt/lib/builtins/fp_fixint_impl.inc
   20   const rep_t aRep = toRep(a);
projects/compiler-rt/lib/builtins/fp_fixuint_impl.inc
   18   const rep_t aRep = toRep(a);
projects/compiler-rt/lib/builtins/fp_lib.h
  267   rep_t rep = toRep(x);
projects/compiler-rt/lib/builtins/fp_mul_impl.inc
   17   const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
   18   const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
   19   const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
   19   const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
   21   rep_t aSignificand = toRep(a) & significandMask;
   22   rep_t bSignificand = toRep(b) & significandMask;
   29     const rep_t aAbs = toRep(a) & absMask;
   30     const rep_t bAbs = toRep(b) & absMask;
   34       return fromRep(toRep(a) | quietBit);
   37       return fromRep(toRep(b) | quietBit);
projects/compiler-rt/lib/builtins/negdf2.c
   16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
projects/compiler-rt/lib/builtins/negsf2.c
   16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
projects/compiler-rt/lib/builtins/subdf3.c
   18   return __adddf3(a, fromRep(toRep(b) ^ signBit));
projects/compiler-rt/lib/builtins/subsf3.c
   18   return __addsf3(a, fromRep(toRep(b) ^ signBit));