Home
last modified time | relevance | path

Searched refs:IEEE754_DOUBLE_BIAS (Results 1 – 17 of 17) sorted by relevance

/glibc-2.36/sysdeps/ieee754/ldbl-128ibm/
Dprintf_fphex.c123 exponent = IEEE754_DOUBLE_BIAS - 1; \
126 else if (exponent >= IEEE754_DOUBLE_BIAS) \
129 exponent -= IEEE754_DOUBLE_BIAS; \
134 exponent = -(exponent - IEEE754_DOUBLE_BIAS); \
Dmpn2ldbl.c40 u.d[0].ieee.exponent = expt + IEEE754_DOUBLE_BIAS; in __mpn_construct_long_double()
42 exponent2 = expt - 53 + IEEE754_DOUBLE_BIAS; in __mpn_construct_long_double()
116 if (u.d[0].ieee.exponent == IEEE754_DOUBLE_BIAS + DBL_MAX_EXP) in __mpn_construct_long_double()
Dmath_ldbl.h40 *exp = u.d[0].ieee.exponent - IEEE754_DOUBLE_BIAS; in ldbl_extract_mantissa()
116 u.d[0].ieee.exponent = exp + IEEE754_DOUBLE_BIAS; in ldbl_insert_mantissa()
118 expnt2 = exp - 53 + IEEE754_DOUBLE_BIAS; in ldbl_insert_mantissa()
De_fmodl.c93 if (__glibc_unlikely (ix == -IEEE754_DOUBLE_BIAS)) in __ieee754_fmodl()
104 if (__glibc_unlikely (iy == -IEEE754_DOUBLE_BIAS)) in __ieee754_fmodl()
Dieee754.h112 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
Dldbl2mpn.c49 *expt = (int) u.d[0].ieee.exponent - IEEE754_DOUBLE_BIAS; in __mpn_extract_long_double()
/glibc-2.36/sysdeps/ieee754/dbl-64/
Ds_fma.c52 >= 0x7ff + IEEE754_DOUBLE_BIAS - DBL_MANT_DIG, 0) in __fma()
57 <= IEEE754_DOUBLE_BIAS + DBL_MANT_DIG, 0)) in __fma()
79 if (u.ieee.exponent + v.ieee.exponent > 0x7ff + IEEE754_DOUBLE_BIAS) in __fma()
85 < IEEE754_DOUBLE_BIAS - DBL_MANT_DIG - 2) in __fma()
111 >= 0x7ff + IEEE754_DOUBLE_BIAS - DBL_MANT_DIG) in __fma()
132 <= IEEE754_DOUBLE_BIAS + 2 * DBL_MANT_DIG) in __fma()
Dmpn2dbl.c33 u.ieee.exponent = expt + IEEE754_DOUBLE_BIAS; in __mpn_construct_double()
Ddbl2mpn.c38 *expt = (int) u.ieee.exponent - IEEE754_DOUBLE_BIAS; in __mpn_extract_double()
/glibc-2.36/stdio-common/
Dprintf_fphex.c288 exponent = IEEE754_DOUBLE_BIAS - 1; in __printf_fphex()
291 else if (exponent >= IEEE754_DOUBLE_BIAS) in __printf_fphex()
294 exponent -= IEEE754_DOUBLE_BIAS; in __printf_fphex()
299 exponent = -(exponent - IEEE754_DOUBLE_BIAS); in __printf_fphex()
/glibc-2.36/stdlib/
Derand48_r.c37 temp.ieee.exponent = IEEE754_DOUBLE_BIAS; in __erand48_r()
/glibc-2.36/sysdeps/sparc/sparc32/
Dieee754.h111 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
/glibc-2.36/sysdeps/ieee754/ldbl-128/
Dieee754.h111 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
/glibc-2.36/sysdeps/ieee754/
Dieee754.h126 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
/glibc-2.36/sysdeps/ia64/
Dieee754.h126 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
/glibc-2.36/sysdeps/mips/ieee754/
Dieee754.h131 #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent. */ macro
/glibc-2.36/ChangeLog.old/
DChangeLog.59645 (IEEE754_DOUBLE_BIAS, IEEE854_LONG_DOUBLE_BIAS): New macros.