Changeset 94556 in vbox
- Timestamp:
- Apr 11, 2022 1:52:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r94537 r94556 1207 1207 # define RTFLOAT80U_IS_PSEUDO_DENORMAL(a_pr80) \ 1208 1208 ((a_pr80)->s.uExponent == 0 && (a_pr80)->s.uMantissa >= RT_BIT_64(63)) 1209 # define RTFLOAT80U_IS_DENORMAL_OR_PSEUDO_DENORMAL(a_pr80) \ 1210 ((a_pr80)->s.uExponent == 0 && (a_pr80)->s.uMantissa != 0) 1209 1211 # define RTFLOAT80U_IS_PSEUDO_INF(a_pr80) \ 1210 1212 ((a_pr80)->s.uExponent == 0x7fff && (a_pr80)->s.uMantissa == 0)
Note:
See TracChangeset
for help on using the changeset viewer.