Home
last modified time | relevance | path

Searched refs:EXP_OVER (Results 1 – 10 of 10) sorted by relevance

/linux/arch/x86/math-emu/
H A Dfpu_tags.c68 else if (exp != EXP_BIAS + EXP_OVER) in FPU_Special()
77 return ((exponent(ptr) == EXP_BIAS + EXP_OVER) in isNaN()
H A Dfpu_emu.h31 #define EXP_OVER Const(0x4000) /* smallest invalid large exponent */ macro
35 #define EXP_Infinity EXP_OVER
36 #define EXP_NaN EXP_OVER
H A Dreg_constant.c48 FPU_REG const CONST_QNaN = MAKE_REG(NEG, EXP_OVER, 0x00000000, 0xC0000000);
51 FPU_REG const CONST_INF = MAKE_REG(POS, EXP_OVER, 0x00000000, 0x80000000);
H A Derrors.c378 isNaN = (exponent(a) == EXP_OVER) && (a->sigh & 0x80000000); in real_1op_NaN()
429 && !((exponent(a) == EXP_OVER) in real_2op_NaN()
432 && !((exponent(b) == EXP_OVER) && (b->sigh & 0x80000000))); in real_2op_NaN()
H A Dreg_compare.c96 unsupported = !((exponent(st0_ptr) == EXP_OVER) in compare()
103 unsupported |= !((exponent(b) == EXP_OVER) in compare()
H A Dfpu_etc.c110 && (exponent(st0_ptr) == EXP_OVER)) in fxam()
H A Dreg_ld_str.c453 if (exp >= EXP_OVER) in FPU_store_double()
512 if ((exponent(st0_ptr) == EXP_OVER) in FPU_store_double()
637 if (exp >= EXP_OVER) in FPU_store_single()
694 if ((exponent(st0_ptr) == EXP_OVER) in FPU_store_single()
H A Dreg_norm.S59 cmpw EXP_OVER,EXP(%ebx)
H A Dreg_round.S413 cmpw EXP_OVER,EXP(%edi)
H A Dfpu_trig.c198 isNaN = (exponent(st0_ptr) == EXP_OVER) in single_arg_2_error()