Searched refs:src_rep_t (Results 1 – 2 of 2) sorted by relevance
21 typedef su_int src_rep_t; typedef28 typedef du_int src_rep_t; typedef31 static __inline int src_rep_t_clz(src_rep_t a) { in src_rep_t_clz()44 typedef uint16_t src_rep_t; typedef78 static __inline src_rep_t srcToRep(src_t x) { in srcToRep()79 const union { src_t f; src_rep_t i; } rep = {.f = x}; in srcToRep()
49 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;50 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;51 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);52 const src_rep_t srcAbsMask = srcSignMask - 1;53 const src_rep_t srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);54 const src_rep_t srcNaNCode = srcQNaN - 1;64 const src_rep_t aRep = srcToRep(a);65 const src_rep_t aAbs = aRep & srcAbsMask;66 const src_rep_t sign = aRep & srcSignMask;69 // If sizeof(src_rep_t) < sizeof(int), the subtraction result is promoted[all …]