Lines Matching defs:src_rep_t
21 typedef uint32_t src_rep_t;
32 typedef uint64_t src_rep_t;
40 static inline int src_rep_t_clz_impl(src_rep_t a) { return __builtin_clzll(a); }
45 typedef __uint128_t src_rep_t;
61 typedef uint16_t src_rep_t;
69 static inline int src_rep_t_clz_impl(src_rep_t a) {
81 typedef uint16_t src_rep_t;
133 static inline src_rep_t extract_sign_from_src(src_rep_t x) {
134 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcBits - 1);
138 static inline src_rep_t extract_exp_from_src(src_rep_t x) {
140 const src_rep_t srcExpMask = ((SRC_REP_C(1) << srcExpBits) - 1) << srcSigBits;
144 static inline src_rep_t extract_sig_frac_from_src(src_rep_t x) {
145 const src_rep_t srcSigFracMask = (SRC_REP_C(1) << srcSigFracBits) - 1;
150 static inline int clz_in_sig_frac(src_rep_t sigFrac) {
163 static inline src_rep_t srcToRep(src_t x) {
166 src_rep_t i;