HomeSort by: relevance | last modified time | path
    Searched refs:srcSigBits (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
fp_extend_impl.inc 45 const int srcExpBits = srcBits - srcSigBits - 1;
49 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;
50 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;
51 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
53 const src_rep_t srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);
75 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits);
85 absResult |= (dst_rep_t)(aAbs & srcQNaN) << (dstSigBits - srcSigBits);
86 absResult |= (dst_rep_t)(aAbs & srcNaNCode) << (dstSigBits - srcSigBits);
94 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits + scale);
fp_trunc_impl.inc 46 const int srcExpBits = srcBits - srcSigBits - 1;
50 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;
52 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;
53 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
55 const src_rep_t roundMask = (SRC_REP_C(1) << (srcSigBits - dstSigBits)) - 1;
56 const src_rep_t halfway = SRC_REP_C(1) << (srcSigBits - dstSigBits - 1);
57 const src_rep_t srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);
67 const src_rep_t underflow = (src_rep_t)underflowExponent << srcSigBits;
68 const src_rep_t overflow = (src_rep_t)overflowExponent << srcSigBits;
83 absResult = aAbs >> (srcSigBits - dstSigBits)
    [all...]
fp_extend.h 23 static const int srcSigBits = 23;
30 static const int srcSigBits = 52;
46 static const int srcSigBits = 10;
fp_trunc.h 23 static const int srcSigBits = 23;
29 static const int srcSigBits = 52;
35 static const int srcSigBits = 112;

Completed in 14 milliseconds