Searched refs:EXP_OVER (Results 1 – 10 of 10) sorted by relevance
68 else if (exp != EXP_BIAS + EXP_OVER) in FPU_Special()77 return ((exponent(ptr) == EXP_BIAS + EXP_OVER) in isNaN()
31 #define EXP_OVER Const(0x4000) /* smallest invalid large exponent */ macro35 #define EXP_Infinity EXP_OVER36 #define EXP_NaN EXP_OVER
48 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);
378 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()
96 unsupported = !((exponent(st0_ptr) == EXP_OVER) in compare()103 unsupported |= !((exponent(b) == EXP_OVER) in compare()
110 && (exponent(st0_ptr) == EXP_OVER)) in fxam()
453 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()
59 cmpw EXP_OVER,EXP(%ebx)
413 cmpw EXP_OVER,EXP(%edi)
198 isNaN = (exponent(st0_ptr) == EXP_OVER) in single_arg_2_error()
Completed in 14 milliseconds