Lines Matching defs:dst_rep_t
66 typedef uint64_t dst_rep_t;
76 typedef __uint128_t dst_rep_t;
87 typedef uint32_t dst_rep_t;
101 typedef uint16_t dst_rep_t;
111 typedef uint16_t dst_rep_t;
142 static inline dst_rep_t construct_dst_rep(dst_rep_t sign, dst_rep_t exp, dst_rep_t sigFrac) {
143 dst_rep_t result = (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac;
162 static inline dst_t dstFromRep(dst_rep_t x) {
165 dst_rep_t i;