Searched refs:src_rep_t (Results 1 – 4 of 4) sorted by relevance
49 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;50 const src_rep_t srcSignificandMask = srcMinNormal - 1;51 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;53 const src_rep_t srcAbsMask = srcSignMask - 1;57 const src_rep_t srcNaNCode = srcQNaN - 1;66 const src_rep_t underflow = (src_rep_t)underflowExponent << srcSigBits;67 const src_rep_t overflow = (src_rep_t)overflowExponent << srcSigBits;73 const src_rep_t aRep = srcToRep(a);74 const src_rep_t aAbs = aRep & srcAbsMask;75 const src_rep_t sign = aRep & srcSignMask;[all …]
21 typedef uint32_t src_rep_t; typedef28 typedef uint64_t src_rep_t; typedef31 static __inline int src_rep_t_clz(src_rep_t a) { in src_rep_t_clz()48 typedef uint16_t src_rep_t; typedef82 static __inline src_rep_t srcToRep(src_t x) { in srcToRep()85 src_rep_t i; in srcToRep()
48 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;49 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;50 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);51 const src_rep_t srcAbsMask = srcSignMask - 1;52 const src_rep_t srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);53 const src_rep_t srcNaNCode = srcQNaN - 1;63 const src_rep_t aRep = srcToRep(a);64 const src_rep_t aAbs = aRep & srcAbsMask;65 const src_rep_t sign = aRep & srcSignMask;69 // to (signed) int. To avoid that, explicitly cast to src_rep_t.[all …]
20 typedef uint32_t src_rep_t; typedef26 typedef uint64_t src_rep_t; typedef32 typedef __uint128_t src_rep_t; typedef75 static __inline src_rep_t srcToRep(src_t x) { in srcToRep()78 src_rep_t i; in srcToRep()