slow emulation routine for 32-bit
| 349 | |
| 350 | // slow emulation routine for 32-bit |
| 351 | fastfloat_really_inline constexpr uint64_t emulu(uint32_t x, uint32_t y) { |
| 352 | return x * (uint64_t)y; |
| 353 | } |
| 354 | |
| 355 | fastfloat_really_inline FASTFLOAT_CONSTEXPR14 |
| 356 | uint64_t umul128_generic(uint64_t ab, uint64_t cd, uint64_t *hi) { |