Lines Matching refs:Const
25 #define Const(x) $##x
27 #define Const(x) x macro
30 #define EXP_BIAS Const(0)
31 #define EXP_OVER Const(0x4000) /* smallest invalid large exponent */
32 #define EXP_UNDER Const(-0x3fff) /* largest invalid small exponent */
33 #define EXP_WAY_UNDER Const(-0x6000) /* Below the smallest denormal, but
38 #define EXTENDED_Ebias Const(0x3fff)
41 #define SIGN_POS Const(0)
42 #define SIGN_NEG Const(0x80)
44 #define SIGN_Positive Const(0)
45 #define SIGN_Negative Const(0x8000)
49 #define TW_Denormal Const(4) /* De-normal */
50 #define TW_Infinity Const(5) /* + or - infinity */
51 #define TW_NaN Const(6) /* Not a Number */
52 #define TW_Unsupported Const(7) /* Not supported by an 80486 */
54 #define TAG_Valid Const(0) /* valid */
55 #define TAG_Zero Const(1) /* zero */
56 #define TAG_Special Const(2) /* De-normal, + or - infinity,
58 #define TAG_Empty Const(3) /* empty */
59 #define TAG_Error Const(0x80) /* probably need to abort */
61 #define LOADED_DATA Const(10101) /* Special st() number to identify
69 #define FPU_Exception Const(0x80000000) /* Added to tag returns. */