MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / round_down

Function round_down

Source/external/fast_float.h:2834–2842  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2832}
2833
2834fastfloat_really_inline FASTFLOAT_CONSTEXPR14
2835void 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
2844fastfloat_really_inline FASTFLOAT_CONSTEXPR20
2845void skip_zeros(const char*& first, const char* last) noexcept {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected