Home
last modified time | relevance | path

Searched refs:DST_REP_C (Results 1 – 6 of 6) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc.h55 #define DST_REP_C UINT64_C macro
65 #define DST_REP_C (__uint128_t) macro
76 #define DST_REP_C UINT32_C macro
90 #define DST_REP_C UINT16_C macro
100 #define DST_REP_C UINT16_C macro
134 result |= (DST_REP_C(1) << dstSigFracBits); in construct_dst_rep()
H A Dint_to_fp.h46 #define DST_REP_C UINT32_C macro
55 #define DST_REP_C UINT64_C macro
64 #define DST_REP_C (__uint128_t) macro
H A Dfp_extend.h97 #define DST_REP_C UINT32_C macro
107 #define DST_REP_C UINT64_C macro
117 #define DST_REP_C (__uint128_t) macro
H A Dfp_trunc_impl.inc63 const dst_rep_t dstQNaN = DST_REP_C(1) << (dstSigFracBits - 1);
102 if (dstSigFrac >= (DST_REP_C(1) << dstSigFracBits)) {
104 dstSigFrac ^= (DST_REP_C(1) << dstSigFracBits);
147 if (dstSigFrac >= (DST_REP_C(1) << dstSigFracBits)) {
149 dstSigFrac ^= (DST_REP_C(1) << dstSigFracBits);
H A Dint_to_fp_impl.inc63 const dst_rep_t dstSignMask = DST_REP_C(1) << (dstBits - 1);
66 const dst_rep_t dstSignificandMask = (DST_REP_C(1) << dstSigBits) - 1;
H A Dfp_extend_impl.inc94 const dst_rep_t dstMinNormal = DST_REP_C(1) << (dstBits - 1 - dstExpBits);