Lines Matching defs:fp_t
45 typedef float fp_t;
59 COMPILER_RT_ABI fp_t __addsf3(fp_t a, fp_t b);
65 typedef double fp_t;
102 COMPILER_RT_ABI fp_t __adddf3(fp_t a, fp_t b);
109 typedef long double fp_t;
231 static inline rep_t toRep(fp_t x) {
232 const union { fp_t f; rep_t i; } rep = {.f = x};
236 static inline fp_t fromRep(rep_t x) {
237 const union { fp_t f; rep_t i; } rep = {.i = x};