Lines Matching defs:FP32_EXP_BIAS
76 #define FP32_EXP_BIAS 127
1452 x_exp = a_exp + b_exp - FP32_EXP_BIAS + 2 * FP32_EXP_BITS + 1;
1632 y_exp = b_exp + c_exp - FP32_EXP_BIAS + 2 * FP32_EXP_BITS + 1 - 3;
1833 x_exp = a_exp - b_exp + (FP32_EXP_BIAS + FP32_BITS + 2 * FP32_EXP_BITS - 3);
2566 return fp32_pack(sgn, FP32_EXP_BIAS, 1ULL << (FP32_MANT_BITS - 1));
2584 return fp32_pack(sgn, FP32_EXP_BIAS + 1, 1ULL << (FP32_MANT_BITS - 1));
2602 return fp32_pack(sgn, FP32_EXP_BIAS + 1, 0);
2649 fp16_round_(sgn, exp - FP32_EXP_BIAS + FP16_EXP_BIAS,
2738 FP32_EXP_BIAS + FP16_EXP_BITS),
2775 fp32_round_(sgn, exp - FP64_EXP_BIAS + FP32_EXP_BIAS,
2852 result = fp64_pack(sgn, (exp - FP32_EXP_BIAS +
3576 result = fp32_pack(0, (3 * FP32_EXP_BIAS - exp - 1) >> 1,
3810 } else if (fpscr.fz && exp >= 2 * FP32_EXP_BIAS - 1) {
3816 int result_exp = 2 * FP32_EXP_BIAS - 1 - exp;
4136 int expint = FP32_EXP_BIAS + FP32_MANT_BITS;
4528 (uint32_t)FP32_EXP_BIAS << FP32_MANT_BITS; // 1.0
4703 FPToFixed_32(sgn, exp + FP64_EXP_BIAS - FP32_EXP_BIAS + fbits,
4792 FPToFixed_64(sgn, exp + FP64_EXP_BIAS - FP32_EXP_BIAS + fbits,
4852 int x_exp = FP32_EXP_BIAS + FP64_BITS - 1 - fbits;