Home
last modified time | relevance | path

Searched refs:mantissa1 (Results 1 – 11 of 11) sorted by relevance

/haiku/src/system/libroot/posix/glibc/include/
H A Dieee754.h80 unsigned int mantissa1:32; member
87 unsigned int mantissa1:32; member
90 unsigned int mantissa1:32; member
107 unsigned int mantissa1:32; member
114 unsigned int mantissa1:32;
117 unsigned int mantissa1:32;
142 unsigned int mantissa1:32; member
150 unsigned int mantissa1:32; member
152 unsigned int mantissa1:32; member
171 unsigned int mantissa1:32; member
[all …]
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Dmpn2ldbl.c37 u.ieee.mantissa1 = frac_ptr[0]; in __mpn_construct_long_double()
40 u.ieee.mantissa1 = frac_ptr[0] & (((mp_limb_t) 1 << 32) - 1); in __mpn_construct_long_double()
H A Dmpn2dbl.c36 u.ieee.mantissa1 = frac_ptr[0]; in __mpn_construct_double()
40 u.ieee.mantissa1 = frac_ptr[0] & (((mp_limb_t) 1 << 32) - 1); in __mpn_construct_double()
H A Dldbl2mpn.c44 res_ptr[0] = u.ieee.mantissa1; /* Low-order 32 bits of fraction. */ in __mpn_extract_long_double()
50 res_ptr[0] = ((mp_limb_t) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; in __mpn_extract_long_double()
H A Ddbl2mpn.c42 res_ptr[0] = u.ieee.mantissa1; /* Low-order 32 bits of fraction. */ in __mpn_extract_double()
48 res_ptr[0] = ((unsigned long int) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; in __mpn_extract_double()
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Dldbl2mpn.c44 res_ptr[0] = u.ieee.mantissa1; /* Low-order 32 bits of fraction. */ in __mpn_extract_long_double()
50 res_ptr[0] = ((unsigned long int) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; in __mpn_extract_long_double()
/haiku/src/system/libroot/posix/glibc/arch/x86/
H A Dldbl2mpn.c43 res_ptr[0] = u.ieee.mantissa1; /* Low-order 32 bits of fraction. */ in __mpn_extract_long_double()
49 res_ptr[0] = ((mp_limb_t) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; in __mpn_extract_long_double()
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Derand48_r.c43 temp.ieee.mantissa1 = ((xsubi[1] & 0xfff) << 20) | (xsubi[0] << 4);
H A Dstrtod.c48 u.ieee.mantissa1 = (mant) & 0xffffffff; \
/haiku/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcstold.c43 u.ieee.mantissa1 = (mant) & 0xffffffff; \
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fphex.c112 | fpnum.ldbl.ieee.mantissa1); \
365 | fpnum.dbl.ieee.mantissa1); in __printf_fphex()