Rev 697 | Rev 732 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 697 | Rev 731 | ||
---|---|---|---|
Line 78... | Line 78... | ||
78 | #define FLOAT32_INF 0x7F800000 |
78 | #define FLOAT32_INF 0x7F800000 |
79 | 79 | ||
80 | #define FLOAT32_MANTISA_SIZE 23 |
80 | #define FLOAT32_MANTISA_SIZE 23 |
81 | #define FLOAT64_MANTISA_SIZE 52 |
81 | #define FLOAT64_MANTISA_SIZE 52 |
82 | 82 | ||
- | 83 | #define FLOAT32_HIDDEN_BIT_MASK 0x800000 |
|
- | 84 | #define FLOAT64_HIDDEN_BIT_MASK 0x10000000000000l |
|
- | 85 | ||
83 | #define FLOAT32_BIAS 0x7F |
86 | #define FLOAT32_BIAS 0x7F |
84 | #define FLOAT64_BIAS 0x3FF |
87 | #define FLOAT64_BIAS 0x3FF |
85 | #define FLOAT80_BIAS 0x3FFF |
88 | #define FLOAT80_BIAS 0x3FFF |
86 | 89 | ||
87 | 90 |