Rev 661 | Rev 697 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 661 | Rev 688 | ||
---|---|---|---|
Line 76... | Line 76... | ||
76 | /* For recognizing NaNs or infinity use isFloat32NaN and is Float32Inf, comparing with this constants is not sufficient */ |
76 | /* For recognizing NaNs or infinity use isFloat32NaN and is Float32Inf, comparing with this constants is not sufficient */ |
77 | #define FLOAT32_NAN 0x7F800001 |
77 | #define FLOAT32_NAN 0x7F800001 |
78 | #define FLOAT32_SIGNAN 0x7FC00000 |
78 | #define FLOAT32_SIGNAN 0x7FC00000 |
79 | #define FLOAT32_INF 0x7F800000 |
79 | #define FLOAT32_INF 0x7F800000 |
80 | 80 | ||
- | 81 | #define FLOAT32_MANTISA_SIZE 23 |
|
- | 82 | ||
81 | #define FLOAT32_BIAS 0xF7 |
83 | #define FLOAT32_BIAS 0x7F |
82 | #define FLOAT64_BIAS 0x3FF |
84 | #define FLOAT64_BIAS 0x3FF |
83 | #define FLOAT80_BIAS 0x3FFF |
85 | #define FLOAT80_BIAS 0x3FFF |
84 | 86 | ||
85 | 87 | ||
86 | #endif |
88 | #endif |