| 342 | } |
| 343 | |
| 344 | static uint64_t getFloatBits (double value) { uint64_t i; memcpy (&i, &value, sizeof (i)); return i; } |
| 345 | static uint64_t getFloatBits (float value) { uint32_t i; memcpy (&i, &value, sizeof (i)); return i; } |
| 346 | static bool isZero (uint64_t floatBits) { return (floatBits & (exponentMask | significandMask)) == 0; } |
| 347 |
nothing calls this directly
no outgoing calls
no test coverage detected