Home
last modified time | relevance | path

Searched refs:dstBits (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc.h56 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
66 static const int dstBits = 80; variable
77 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
91 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
101 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
131 dst_rep_t result = (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac; in construct_dst_rep()
133 if (dstBits == 80 && exp) { in construct_dst_rep()
H A Dfp_extend.h98 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
108 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
118 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable
157 return (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac; in construct_dst_rep()
H A Dint_to_fp_impl.inc62 const int dstBits = sizeof(dst_t) * CHAR_BIT;
63 const dst_rep_t dstSignMask = DST_REP_C(1) << (dstBits - 1);
64 const int dstExpBits = dstBits - dstSigBits - 1;
H A Dfp_extend_impl.inc94 const dst_rep_t dstMinNormal = DST_REP_C(1) << (dstBits - 1 - dstExpBits);