| 1980 | } |
| 1981 | |
| 1982 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 |
| 1983 | uint64_t uint64_hi64(uint64_t r0, bool& truncated) noexcept { |
| 1984 | truncated = false; |
| 1985 | int shl = leading_zeroes(r0); |
| 1986 | return r0 << shl; |
| 1987 | } |
| 1988 | |
| 1989 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 |
| 1990 | uint64_t uint64_hi64(uint64_t r0, uint64_t r1, bool& truncated) noexcept { |
no test coverage detected