Searched refs:FP32_EXP_BITS (Results 1 - 1 of 1) sorted by relevance

/gem5/src/arch/arm/insts/
H A Dfplib.cc72 #define FP32_EXP_BITS 8 macro
80 #define FP32_EXP_INF ((1ULL << FP32_EXP_BITS) - 1)
84 #define FP32_MANT_BITS (FP32_BITS - FP32_EXP_BITS - 1)
88 #define FP32_EXP(x) ((x) >> FP32_MANT_BITS & ((1ULL << FP32_EXP_BITS) - 1))
805 // The bottom FP32_EXP_BITS bits of mnt are orred together:
806 mnt = (4ULL << FP32_MANT_BITS | mnt >> (FP32_EXP_BITS - 1) |
807 ((mnt & ((1ULL << FP32_EXP_BITS) - 1)) != 0));
1324 return fp32_round(x_sgn, x_exp + FP32_EXP_BITS - 3, x_mnt << 1,
1452 x_exp = a_exp + b_exp - FP32_EXP_BIAS + 2 * FP32_EXP_BITS + 1;
1627 x_exp = a_exp + 2 * FP32_EXP_BITS
[all...]

Completed in 15 milliseconds