ReactOS 0.4.16-dev-306-g647d351
|
#include <precomp.h>
Go to the source code of this file.
Macros | |
#define | EXCESS 126L |
#define | SIGNBIT 0x80000000L |
#define | SIGN(fp) ((fp) & SIGNBIT) |
#define | EXP(fp) (((fp) >> 23L) & 0xFF) |
#define | MANT(fp) ((fp) & 0x7FFFFFL) |
#define | PACK(s, e, m) ((s) | ((e) << 23L) | (m)) |
Functions | |
FLOATL FASTCALL | EFtoF (EFLOAT_S *efp) |
VOID FASTCALL | FtoEF (EFLOAT_S *efp, FLOATL f) |