Lines Matching refs:result_exp
3881 int32_t exp, result_exp; in FPRecipSqrtEstimate() local
3908 result_exp = (380 - exp) / 2; in FPRecipSqrtEstimate()
3910 result_exp = (3068 - exp) / 2; in FPRecipSqrtEstimate()
3916 uint32_t exp_bits = static_cast<uint32_t>(Bits(result_exp, 7, 0)); in FPRecipSqrtEstimate()
3920 return double_pack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate()
3996 int32_t exp, result_exp; in FPRecipEstimate() local
4022 result_exp = 253 - exp; in FPRecipEstimate()
4024 result_exp = 2045 - exp; in FPRecipEstimate()
4030 if (result_exp == 0) { in FPRecipEstimate()
4032 } else if (result_exp == -1) { in FPRecipEstimate()
4034 result_exp = 0; in FPRecipEstimate()
4037 uint32_t exp_bits = static_cast<uint32_t>(Bits(result_exp, 7, 0)); in FPRecipEstimate()
4041 return double_pack(sign, Bits(result_exp, 10, 0), Bits(fraction, 51, 0)); in FPRecipEstimate()