| 41 | } |
| 42 | |
| 43 | static double int64Bits2Double(uint64_t bits) { |
| 44 | double f; |
| 45 | memcpy(&f, &bits, sizeof(double)); |
| 46 | return f; |
| 47 | } |
| 48 | |
| 49 | static double ieeeParts2Double(const bool sign, const uint32_t ieeeExponent, |
| 50 | const uint64_t ieeeMantissa) { |
no outgoing calls
no test coverage detected