Home
last modified time | relevance | path

Searched refs:dstExpBits (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc.h60 static const int dstExpBits = 11; variable
71 static const int dstExpBits = 15; variable
81 static const int dstExpBits = 8; variable
95 static const int dstExpBits = 5; variable
105 static const int dstExpBits = 8; variable
131 dst_rep_t result = (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac; in construct_dst_rep()
H A Dfp_extend.h102 static const int dstExpBits = 8; variable
112 static const int dstExpBits = 11; variable
122 static const int dstExpBits = 15; variable
157 return (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac; in construct_dst_rep()
H A Dfp_extend_impl.inc50 const int dstInfExp = (1 << dstExpBits) - 1;
77 if (srcExpBits == dstExpBits) {
94 const dst_rep_t dstMinNormal = DST_REP_C(1) << (dstBits - 1 - dstExpBits);
H A Dint_to_fp_impl.inc64 const int dstExpBits = dstBits - dstSigBits - 1;
65 const int dstExpBias = (1 << (dstExpBits - 1)) - 1;
H A Dfp_trunc_impl.inc59 const int dstInfExp = (1 << dstExpBits) - 1;
78 if (srcExpBits == dstExpBits &&