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

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
fp_extend_impl.inc 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);
52 const src_rep_t srcAbsMask = srcSignMask - 1;
53 const src_rep_t srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);
54 const src_rep_t srcNaNCode = srcQNaN - 1;
64 const src_rep_t aRep = srcToRep(a);
65 const src_rep_t aAbs = aRep & srcAbsMask;
66 const src_rep_t sign = aRep & srcSignMask
    [all...]
fp_extend.h 21 typedef uint32_t src_rep_t; typedef in typeref:typename:uint32_t
28 typedef uint64_t src_rep_t; typedef in typeref:typename:uint64_t
31 static __inline int src_rep_t_clz(src_rep_t a) {
44 typedef uint16_t src_rep_t; typedef in typeref:typename:uint16_t
78 static __inline src_rep_t srcToRep(src_t x) {
79 const union { src_t f; src_rep_t i; } rep = {.f = x};
fp_trunc_impl.inc 50 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;
51 const src_rep_t srcSignificandMask = srcMinNormal - 1;
52 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;
53 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
54 const src_rep_t srcAbsMask = srcSignMask - 1;
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);
58 const src_rep_t srcNaNCode = srcQNaN - 1
    [all...]
fp_trunc.h 21 typedef uint32_t src_rep_t; typedef in typeref:typename:uint32_t
27 typedef uint64_t src_rep_t; typedef in typeref:typename:uint64_t
33 typedef __uint128_t src_rep_t; typedef in typeref:typename:__uint128_t
66 static __inline src_rep_t srcToRep(src_t x) {
67 const union { src_t f; src_rep_t i; } rep = {.f = x};

Completed in 14 milliseconds