Searched refs:dst_rep_t (Results 1 – 4 of 4) sorted by relevance
43 typedef uint64_t dst_rep_t; typedef49 typedef uint32_t dst_rep_t; typedef55 typedef uint16_t dst_rep_t; typedef71 static inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep()72 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; in dstFromRep()
55 typedef uint32_t dst_rep_t; typedef61 typedef uint64_t dst_rep_t; typedef67 typedef __uint128_t dst_rep_t; typedef83 static inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep()84 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; in dstFromRep()
61 const dst_rep_t dstMinNormal = DST_REP_C(1) << dstSigBits;67 dst_rep_t absResult;75 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits);76 absResult += (dst_rep_t)(dstExpBias - srcExpBias) << dstSigBits;84 absResult = (dst_rep_t)dstInfExp << dstSigBits;85 absResult |= (dst_rep_t)(aAbs & srcQNaN) << (dstSigBits - srcSigBits);86 absResult |= (dst_rep_t)(aAbs & srcNaNCode) << (dstSigBits - srcSigBits);94 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits + scale);97 absResult |= (dst_rep_t)resultExponent << dstSigBits;106 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
70 const dst_rep_t dstQNaN = DST_REP_C(1) << (dstSigBits - 1);71 const dst_rep_t dstNaNCode = dstQNaN - 1;77 dst_rep_t absResult;84 absResult -= (dst_rep_t)(srcExpBias - dstExpBias) << dstSigBits;98 absResult = (dst_rep_t)dstInfExp << dstSigBits;104 absResult = (dst_rep_t)dstInfExp << dstSigBits;133 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);