Lines Matching refs:rep_t
44 typedef uint32_t rep_t; typedef
52 static __inline int rep_clz(rep_t a) { return clzsi(a); } in rep_clz()
55 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply()
65 typedef uint64_t rep_t; typedef
72 static __inline int rep_clz(rep_t a) { in rep_clz()
89 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply()
111 typedef __uint128_t rep_t; typedef
120 static __inline int rep_clz(rep_t a) { in rep_clz()
158 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply()
210 #define typeWidth (sizeof(rep_t) * CHAR_BIT)
220 #define oneRep ((rep_t)exponentBias << significandBits)
225 static __inline rep_t toRep(fp_t x) { in toRep()
228 rep_t i; in toRep()
233 static __inline fp_t fromRep(rep_t x) { in fromRep()
236 rep_t i; in fromRep()
241 static __inline int normalize(rep_t *significand) { in normalize()
247 static __inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { in wideLeftShift()
252 static __inline void wideRightShiftWithSticky(rep_t *hi, rep_t *lo, in wideRightShiftWithSticky()
274 rep_t rep = toRep(x); in __compiler_rt_logbX()