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

Declarations

projects/compiler-rt/lib/builtins/fp_trunc.h
   48 typedef uint32_t dst_rep_t;

References

projects/compiler-rt/lib/builtins/fp_extend.h
   86 static __inline dst_t dstFromRep(dst_rep_t x) {
   89     dst_rep_t i;
projects/compiler-rt/lib/builtins/fp_extend_impl.inc
   60   const dst_rep_t dstMinNormal = DST_REP_C(1) << dstSigBits;
   66   dst_rep_t absResult;
  105   const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
projects/compiler-rt/lib/builtins/fp_trunc.h
   73 static __inline dst_t dstFromRep(dst_rep_t x) {
   76     dst_rep_t i;
projects/compiler-rt/lib/builtins/fp_trunc_impl.inc
   69   const dst_rep_t dstQNaN = DST_REP_C(1) << (dstSigBits - 1);
   70   const dst_rep_t dstNaNCode = dstQNaN - 1;
   76   dst_rep_t absResult;
  130   const dst_rep_t result = absResult | sign >> (srcBits - dstBits);