Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/lib/builtins/
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 result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
Dfp_extend.h55 typedef su_int dst_rep_t; typedef
61 typedef du_int dst_rep_t; typedef
67 typedef __uint128_t dst_rep_t; typedef
83 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()