Searched refs:dst_rep_t (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dfp_extend_impl.inc61 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 resul
[all...]
H A Dfp_trunc.h43 typedef uint64_t dst_rep_t; typedef
49 typedef uint32_t dst_rep_t; typedef
55 typedef uint16_t dst_rep_t; typedef
71 static __inline dst_t dstFromRep(dst_rep_t x) {
72 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
H A Dfp_extend.h55 typedef uint32_t dst_rep_t; typedef
61 typedef uint64_t dst_rep_t; typedef
67 typedef __uint128_t dst_rep_t; typedef
83 static __inline dst_t dstFromRep(dst_rep_t x) {
84 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
H A Dfp_trunc_impl.inc70 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);

Completed in 186 milliseconds