Lines Matching defs:exp
621 static uint64_t call_recip_estimate(int *exp, int exp_off, uint64_t frac,
629 if (*exp == 0) {
631 *exp = -1;
648 result_exp = exp_off - *exp;
661 *exp = result_exp;
895 static uint64_t recip_sqrt_estimate(int *exp , int exp_off, uint64_t frac,
901 if (*exp == 0) {
904 *exp -= 1;
910 if (*exp & 1) {
919 if (*exp & 1) {
929 *exp = (exp_off - *exp) / 2;
1251 uint32_t exp = extract32(f, 23, 8);
1253 if (unlikely(exp == 0xff)) {
1260 exp = extract32(f, 23, 8);
1263 if (exp < 126 + intsize) {
1267 if (exp == 126 + intsize) {
1299 uint32_t exp = extract64(f, 52, 11);
1301 if (unlikely(exp == 0x7ff)) {
1308 exp = extract64(f, 52, 11);
1311 if (exp < 1022 + intsize) {
1315 if (exp == 1022 + intsize) {