Rev 865 | Rev 1031 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 865 | Rev 874 | ||
|---|---|---|---|
| Line 43... | Line 43... | ||
| 43 | 43 | ||
| 44 | #define float64_to_uint(X) float64_to_uint32(X); |
44 | #define float64_to_uint(X) float64_to_uint32(X); |
| 45 | #define float64_to_ulong(X) float64_to_uint32(X); |
45 | #define float64_to_ulong(X) float64_to_uint32(X); |
| 46 | #define float64_to_ulonglong(X) float64_to_uint64(X); |
46 | #define float64_to_ulonglong(X) float64_to_uint64(X); |
| 47 | 47 | ||
| - | 48 | #define int_to_float32(X) int32_to_float32(X); |
|
| - | 49 | #define long_to_float32(X) int32_to_float32(X); |
|
| - | 50 | #define longlong_to_float32(X) int64_to_float32(X); |
|
| - | 51 | ||
| - | 52 | #define int_to_float64(X) int32_to_float64(X); |
|
| - | 53 | #define long_to_float64(X) int32_to_float64(X); |
|
| - | 54 | #define longlong_to_float64(X) int64_to_float64(X); |
|
| - | 55 | ||
| - | 56 | #define uint_to_float32(X) uint32_to_float32(X); |
|
| - | 57 | #define ulong_to_float32(X) uint32_to_float32(X); |
|
| - | 58 | #define ulonglong_to_float32(X) uint64_to_float32(X); |
|
| - | 59 | ||
| - | 60 | #define uint_to_float64(X) uint32_to_float64(X); |
|
| - | 61 | #define ulong_to_float64(X) uint32_to_float64(X); |
|
| - | 62 | #define ulonglong_to_float64(X) uint64_to_float64(X); |
|
| - | 63 | ||
| - | 64 | ||
| - | 65 | ||
| 48 | #endif |
66 | #endif |