OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:src_rep_t
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/
truncdfsf2.c
43
typedef uint64_t
src_rep_t
;
typedef
55
static inline
src_rep_t
srcToRep(src_t x) {
56
const union { src_t f;
src_rep_t
i; } rep = {.f = x};
79
const
src_rep_t
srcMinNormal = SRC_REP_C(1) << srcSigBits;
80
const
src_rep_t
significandMask = srcMinNormal - 1;
81
const
src_rep_t
srcInfinity = (
src_rep_t
)srcInfExp << srcSigBits;
82
const
src_rep_t
srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
83
const
src_rep_t
srcAbsMask = srcSignMask - 1;
84
const
src_rep_t
roundMask = (SRC_REP_C(1) << (srcSigBits - dstSigBits)) - 1
[
all
...]
extendsfdf2.c
44
typedef uint32_t
src_rep_t
;
typedef
57
static inline
src_rep_t
srcToRep(src_t x) {
58
const union { src_t f;
src_rep_t
i; } rep = {.f = x};
80
const
src_rep_t
srcMinNormal = SRC_REP_C(1) << srcSigBits;
81
const
src_rep_t
srcInfinity = (
src_rep_t
)srcInfExp << srcSigBits;
82
const
src_rep_t
srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
83
const
src_rep_t
srcAbsMask = srcSignMask - 1;
84
const
src_rep_t
srcQNaN = SRC_REP_C(1) << (srcSigBits - 1);
85
const
src_rep_t
srcNaNCode = srcQNaN - 1
[
all
...]
Completed in 23 milliseconds