#include <sys/types.h>
Go to the source code of this file.
◆ EXTRACT_WORDS
#define EXTRACT_WORDS |
( |
|
ix0, |
|
|
|
ix1, |
|
|
|
d |
|
) |
| |
Value:do { \
edm::math_private::ieee_double_shape_type ew_u; \
(ix0) = ew_u.parts.msw; \
(ix1) = ew_u.parts.lsw; \
} while (0)
Definition at line 66 of file math_private.h.
◆ GET_FLOAT_WORD
#define GET_FLOAT_WORD |
( |
|
i, |
|
|
|
d |
|
) |
| |
Value:do { \
edm::math_private::ieee_float_shape_type gf_u; \
} while (0)
Definition at line 58 of file math_private.h.
◆ GET_LDOUBLE_WORDS
#define GET_LDOUBLE_WORDS |
( |
|
exp, |
|
|
|
ix0, |
|
|
|
ix1, |
|
|
|
d |
|
) |
| |
Value:do { \
edm::math_private::ieee_long_double_shape_type ew_u; \
(
exp) = ew_u.parts.sign_exponent; \
(ix0) = ew_u.parts.msw; \
(ix1) = ew_u.parts.lsw; \
} while (0)
Definition at line 75 of file math_private.h.