fp_extend.h | 55 typedef uint32_t dst_rep_t; typedef in typeref:typename:uint32_t 61 typedef uint64_t dst_rep_t; typedef in typeref:typename:uint64_t 67 typedef __uint128_t dst_rep_t; typedef in typeref:typename:__uint128_t 83 static __inline dst_t dstFromRep(dst_rep_t x) { 84 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
|