| 2832 | } |
| 2833 | |
| 2834 | fastfloat_really_inline FASTFLOAT_CONSTEXPR14 |
| 2835 | void round_down(adjusted_mantissa& am, int32_t shift) noexcept { |
| 2836 | if (shift == 64) { |
| 2837 | am.mantissa = 0; |
| 2838 | } else { |
| 2839 | am.mantissa >>= shift; |
| 2840 | } |
| 2841 | am.power2 += shift; |
| 2842 | } |
| 2843 | |
| 2844 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 |
| 2845 | void skip_zeros(const char*& first, const char* last) noexcept { |
no outgoing calls
no test coverage detected