Searched refs:dstBits (Results 1 – 4 of 4) sorted by relevance
56 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable66 static const int dstBits = 80; variable77 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable91 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable101 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable131 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()
98 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable108 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable118 static const int dstBits = sizeof(dst_t) * CHAR_BIT; variable157 return (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac; in construct_dst_rep()
62 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;
94 const dst_rep_t dstMinNormal = DST_REP_C(1) << (dstBits - 1 - dstExpBits);