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

/freebsd-9.3-release/contrib/compiler-rt/lib/
H A Dextendsfdf2.c50 typedef uint64_t dst_rep_t; typedef
62 static inline dst_t dstFromRep(dst_rep_t x) {
63 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
92 const dst_rep_t dstMinNormal = DST_REP_C(1) << dstSigBits;
98 dst_rep_t absResult;
104 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits);
105 absResult += (dst_rep_t)(dstExpBias - srcExpBias) << dstSigBits;
113 absResult = (dst_rep_t)dstInfExp << dstSigBits;
114 absResult |= (dst_rep_t)(aAbs & srcQNaN) << (dstSigBits - srcSigBits);
123 absResult = (dst_rep_t)aAb
[all...]
H A Dtruncdfsf2.c48 typedef uint32_t dst_rep_t; typedef
60 static inline dst_t dstFromRep(dst_rep_t x) {
61 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
97 const dst_rep_t dstQNaN = DST_REP_C(1) << (dstSigBits - 1);
98 const dst_rep_t dstNaNCode = dstQNaN - 1;
104 dst_rep_t absResult;
111 absResult -= (dst_rep_t)(srcExpBias - dstExpBias) << dstSigBits;
128 absResult = (dst_rep_t)dstInfExp << dstSigBits;
135 absResult = (dst_rep_t)dstInfExp << dstSigBits;
165 const dst_rep_t resul
[all...]

Completed in 51 milliseconds