Home
last modified time | relevance | path

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

/openbmc/qemu/target/ppc/
H A Dfpu_helper.c821 int e_b = ppc_float64_get_unbiased_exp(frb); in helper_FTDIV() local
826 } else if ((e_b <= -1022) || (e_b >= 1021)) { in helper_FTDIV()
829 (((e_a - e_b) >= 1023) || in helper_FTDIV()
830 ((e_a - e_b) <= -1021) || in helper_FTDIV()
854 int e_b = ppc_float64_get_unbiased_exp(frb); in helper_FTSQRT() local
862 } else if (!float64_is_zero(frb) && (e_b <= (-1022 + 52))) { in helper_FTSQRT()
1941 int e_b = ppc_##tp##_get_unbiased_exp(xb->fld); \
1946 } else if ((e_b <= emin) || (e_b >= (emax - 2))) { \
1949 (((e_a - e_b) >= emax) || \
1950 ((e_a - e_b) <= (emin + 1)) || \
[all …]