Lines Matching refs:result_exp
3941 int32_t exp, result_exp; in FPRecipSqrtEstimate() local
3968 result_exp = (380 - exp) / 2; in FPRecipSqrtEstimate()
3970 result_exp = (3068 - exp) / 2; in FPRecipSqrtEstimate()
3976 uint32_t exp_bits = static_cast<uint32_t>(Bits(result_exp, 7, 0)); in FPRecipSqrtEstimate()
3980 return double_pack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate()
4056 int32_t exp, result_exp; in FPRecipEstimate() local
4082 result_exp = 253 - exp; in FPRecipEstimate()
4084 result_exp = 2045 - exp; in FPRecipEstimate()
4090 if (result_exp == 0) { in FPRecipEstimate()
4092 } else if (result_exp == -1) { in FPRecipEstimate()
4094 result_exp = 0; in FPRecipEstimate()
4097 uint32_t exp_bits = static_cast<uint32_t>(Bits(result_exp, 7, 0)); in FPRecipEstimate()
4101 return double_pack(sign, Bits(result_exp, 10, 0), Bits(fraction, 51, 0)); in FPRecipEstimate()