Rev 652 | Rev 688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 652 | Rev 661 | ||
|---|---|---|---|
| Line 71... | Line 71... | ||
| 71 | #define FLOAT32_MAX 0x7f800000 |
71 | #define FLOAT32_MAX 0x7f800000 |
| 72 | #define FLOAT32_MIN 0xff800000 |
72 | #define FLOAT32_MIN 0xff800000 |
| 73 | #define FLOAT64_MAX |
73 | #define FLOAT64_MAX |
| 74 | #define FLOAT64_MIN |
74 | #define FLOAT64_MIN |
| 75 | 75 | ||
| - | 76 | /* For recognizing NaNs or infinity use isFloat32NaN and is Float32Inf, comparing with this constants is not sufficient */ |
|
| - | 77 | #define FLOAT32_NAN 0x7F800001 |
|
| - | 78 | #define FLOAT32_SIGNAN 0x7FC00000 |
|
| - | 79 | #define FLOAT32_INF 0x7F800000 |
|
| - | 80 | ||
| 76 | #define FLOAT32_BIAS 0xF7 |
81 | #define FLOAT32_BIAS 0xF7 |
| 77 | #define FLOAT64_BIAS 0x3FF |
82 | #define FLOAT64_BIAS 0x3FF |
| 78 | #define FLOAT80_BIAS 0x3FFF |
83 | #define FLOAT80_BIAS 0x3FFF |
| 79 | 84 | ||
| 80 | 85 | ||