- Timestamp:
- Mar 15, 2022 10:33:23 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r93727 r94254 3293 3293 #define X86_FCW_MASK_ALL UINT16_C(0x007f) 3294 3294 /** Mask all exceptions. Same as X86_FSW_XCPT_MASK. */ 3295 #define X86_FCW_XCPT_MASK 3295 #define X86_FCW_XCPT_MASK UINT16_C(0x003f) 3296 3296 /** Precision control mask. */ 3297 3297 #define X86_FCW_PC_MASK UINT16_C(0x0300) 3298 /** Precision control shift. */ 3299 #define X86_FCW_PC_SHIFT 8 3298 3300 /** Precision control: 24-bit. */ 3299 3301 #define X86_FCW_PC_24 UINT16_C(0x0000) … … 3306 3308 /** Rounding control mask. */ 3307 3309 #define X86_FCW_RC_MASK UINT16_C(0x0c00) 3310 /** Rounding control shift. */ 3311 #define X86_FCW_RC_SHIFT 10 3308 3312 /** Rounding control: To nearest. */ 3309 3313 #define X86_FCW_RC_NEAREST UINT16_C(0x0000)
Note:
See TracChangeset
for help on using the changeset viewer.