Lines Matching refs:aexp
1161 int32_t n, aexp, bexp; in helper_f2xm1() local
1210 aexp = extractFloatx80Exp(f2xm1_coeff_0); in helper_f2xm1()
1213 aexp - extractFloatx80Exp(accum), in helper_f2xm1()
1225 aexp += extractFloatx80Exp(y) - 0x3ffe; in helper_f2xm1()
1235 aexp += extractFloatx80Exp(f2xm1_table[n].exp2) - 0x3ffe; in helper_f2xm1()
1239 if (bexp < aexp) { in helper_f2xm1()
1240 shift128RightJamming(bsig0, bsig1, aexp - bexp, in helper_f2xm1()
1242 } else if (aexp < bexp) { in helper_f2xm1()
1243 shift128RightJamming(asig0, asig1, bexp - aexp, in helper_f2xm1()
1245 aexp = bexp; in helper_f2xm1()
1255 ++aexp; in helper_f2xm1()
1266 asign, aexp, asig0, asig1, in helper_f2xm1()
1452 int32_t adj_exp, num_exp, den_exp, xexp, yexp, n, texp, zexp, aexp; in helper_fpatan() local
1678 aexp = extractFloatx80Exp(fpatan_coeff_0); in helper_fpatan()
1680 aexp - extractFloatx80Exp(accum), in helper_fpatan()
1685 azexp = aexp + zexp - 0x3ffe; in helper_fpatan()
1929 int32_t dexp, texp, aexp; in helper_fyl2x_common() local
2007 aexp = extractFloatx80Exp(fyl2x_coeff_0); in helper_fyl2x_common()
2010 aexp - extractFloatx80Exp(accum), in helper_fyl2x_common()
2022 aexp += texp - 0x3ffe; in helper_fyl2x_common()
2023 *exp = aexp; in helper_fyl2x_common()
2096 int32_t aexp; in helper_fyl2xp1() local
2104 helper_fyl2x_common(env, ST0, &aexp, &asig0, &asig1); in helper_fyl2xp1()
2113 aexp += arg1_exp - 0x3ffe; in helper_fyl2xp1()
2118 arg0_sign ^ arg1_sign, aexp, in helper_fyl2xp1()
2227 int32_t aexp; in helper_fyl2x() local
2229 helper_fyl2x_common(env, arg0_m1, &aexp, &asig0, &asig1); in helper_fyl2x()
2240 shift128RightJamming(asig0, asig1, iexp - aexp, in helper_fyl2x()
2247 aexp = iexp; in helper_fyl2x()
2258 aexp += arg1_exp - 0x3ffe; in helper_fyl2x()
2263 asign ^ arg1_sign, aexp, in helper_fyl2x()