Rev 1031 | Rev 1657 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1031 | Rev 1035 | ||
---|---|---|---|
Line 440... | Line 440... | ||
440 | 440 | ||
441 | float32 uint64_to_float32(uint64_t i) |
441 | float32 uint64_to_float32(uint64_t i) |
442 | { |
442 | { |
443 | int counter; |
443 | int counter; |
444 | int32_t exp; |
444 | int32_t exp; |
445 | int32_t j; |
445 | uint32_t j; |
446 | float32 result; |
446 | float32 result; |
447 | 447 | ||
448 | result.parts.sign = 0; |
448 | result.parts.sign = 0; |
449 | result.parts.fraction = 0; |
449 | result.parts.fraction = 0; |
450 | 450 |