tag | line | file | source code |
Const_ | 22 | arch/i386/math-emu/control_w.h | #define CW_Precision Const_(0x0020) /* loss of precision mask */ |
Const_ | 23 | arch/i386/math-emu/control_w.h | #define CW_Underflow Const_(0x0010) /* underflow mask */ |
Const_ | 24 | arch/i386/math-emu/control_w.h | #define CW_Overflow Const_(0x0008) /* overflow mask */ |
Const_ | 25 | arch/i386/math-emu/control_w.h | #define CW_ZeroDiv Const_(0x0004) /* divide by zero mask */ |
Const_ | 26 | arch/i386/math-emu/control_w.h | #define CW_Denormal Const_(0x0002) /* denormalized operand mask */ |
Const_ | 27 | arch/i386/math-emu/control_w.h | #define CW_Invalid Const_(0x0001) /* invalid operation mask */ |
Const_ | 23 | arch/i386/math-emu/exception.h | #define FPU_BUSY Const_(0x8000) /* FPU busy bit (8087 compatibility) */ |
Const_ | 24 | arch/i386/math-emu/exception.h | #define EX_ErrorSummary Const_(0x0080) /* Error summary status */ |
Const_ | 26 | arch/i386/math-emu/exception.h | #define EX_INTERNAL Const_(0x8000) /* Internal error in wm-FPU-emu */ |
Const_ | 27 | arch/i386/math-emu/exception.h | #define EX_StackOver Const_(0x0041|SW_C1) /* stack overflow */ |
Const_ | 28 | arch/i386/math-emu/exception.h | #define EX_StackUnder Const_(0x0041) /* stack underflow */ |
Const_ | 30 | arch/i386/math-emu/exception.h | #define EX_Precision Const_(0x0020) /* loss of precision */ |
Const_ | 31 | arch/i386/math-emu/exception.h | #define EX_Underflow Const_(0x0010) /* underflow */ |
Const_ | 32 | arch/i386/math-emu/exception.h | #define EX_Overflow Const_(0x0008) /* overflow */ |
Const_ | 33 | arch/i386/math-emu/exception.h | #define EX_ZeroDiv Const_(0x0004) /* divide by zero */ |
Const_ | 34 | arch/i386/math-emu/exception.h | #define EX_Denormal Const_(0x0002) /* denormalized operand */ |
Const_ | 35 | arch/i386/math-emu/exception.h | #define EX_Invalid Const_(0x0001) /* invalid operation */ |
Const_ | 38 | arch/i386/math-emu/exception.h | #define PRECISION_LOST_UP Const_((EX_Precision | SW_C1)) |
Const_ | 39 | arch/i386/math-emu/exception.h | #define PRECISION_LOST_DOWN Const_(EX_Precision) |