Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/ieee754/ldbl-128ibm/
Ds_fromfpl_main.c55 int hi_exponent = hx >> (MANT_DIG - 1); in FUNC() local
56 hi_exponent -= BIAS; in FUNC()
57 int exponent = hi_exponent; in FUNC()
71 if (hi_exponent >= MANT_DIG - 1) in FUNC()
74 uret <<= hi_exponent - (MANT_DIG - 1); in FUNC()
78 else if (hi_exponent >= -1) in FUNC()
80 uint64_t h = 1ULL << (MANT_DIG - 2 - hi_exponent); in FUNC()
83 uret = hx >> (MANT_DIG - 1 - hi_exponent); in FUNC()