Symbol: EXTENDED_Ebias
arch/x86/math-emu/errors.c
616
addexponent(dest, (3 * (1 << 13)) + EXTENDED_Ebias);
arch/x86/math-emu/fpu_emu.h
176
#define exponent(x) (((*(short *)&((x)->exp)) & 0x7fff) - EXTENDED_Ebias)
arch/x86/math-emu/fpu_emu.h
178
((y) + EXTENDED_Ebias) & 0x7fff; }
arch/x86/math-emu/fpu_emu.h
182
#define stdexp(x) { (*(short *)&((x)->exp)) += EXTENDED_Ebias; }
arch/x86/math-emu/poly_tan.c
211
setexponent16(st0_ptr, exponent + EXTENDED_Ebias); /* Result is positive. */
arch/x86/math-emu/poly_tan.c
88
(0x41 + EXTENDED_Ebias) | SIGN_Negative);
arch/x86/math-emu/reg_constant.c
21
(u16)((EXTENDED_Ebias+(e)) | ((SIGN_##s != 0)*0x8000)) }
arch/x86/math-emu/reg_ld_str.c
107
exp = ((m64 & 0x7ff00000) >> 20) - DOUBLE_Ebias + EXTENDED_Ebias;
arch/x86/math-emu/reg_ld_str.c
109
if (exp > DOUBLE_Emax + EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
1098
if (exponent(&fpu_register(i)) == -EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
1106
0x7fff - EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
115
exp = EXP_Infinity + EXTENDED_Ebias;
arch/x86/math-emu/reg_ld_str.c
119
exp = EXP_NaN + EXTENDED_Ebias;
arch/x86/math-emu/reg_ld_str.c
125
} else if (exp < DOUBLE_Emin + EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
174
exp = ((m32 & 0x7f800000) >> 23) - SINGLE_Ebias + EXTENDED_Ebias;
arch/x86/math-emu/reg_ld_str.c
176
if (exp < SINGLE_Emin + EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
183
} else if (exp > SINGLE_Emax + EXTENDED_Ebias) {
arch/x86/math-emu/reg_ld_str.c
189
exp = EXP_Infinity + EXTENDED_Ebias;
arch/x86/math-emu/reg_ld_str.c
193
exp = EXP_NaN + EXTENDED_Ebias;