Home | Sort by: relevance | last modified time | path |
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ | |
fp_extend.h | 20 typedef float src_t; typedef in typeref:typename:float 27 typedef double src_t; typedef in typeref:typename:double 43 typedef uint16_t src_t; typedef in typeref:typename:uint16_t 78 static __inline src_rep_t srcToRep(src_t x) { 79 const union { src_t f; src_rep_t i; } rep = {.f = x}; |
fp_trunc.h | 20 typedef float src_t; typedef in typeref:typename:float 26 typedef double src_t; typedef in typeref:typename:double 32 typedef long double src_t; typedef in typeref:typename:long double 66 static __inline src_rep_t srcToRep(src_t x) { 67 const union { src_t f; src_rep_t i; } rep = {.f = x}; |
fp_extend_impl.inc | 41 static __inline dst_t __extendXfYf2__(src_t a) { 44 const int srcBits = sizeof(src_t)*CHAR_BIT; |
fp_trunc_impl.inc | 42 static __inline dst_t __truncXfYf2__(src_t a) { 45 const int srcBits = sizeof(src_t)*CHAR_BIT; |