MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / parse_four_digits_unrolled

Function parse_four_digits_unrolled

app/src/ThirdParty/fast_float.h:1849–1854  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1847}
1848
1849fastfloat_really_inline FASTFLOAT_CONSTEXPR14 uint32_t
1850parse_four_digits_unrolled(uint32_t val) noexcept {
1851 val -= 0x30303030;
1852 val = (val * 10) + (val >> 8);
1853 return (((val & 0x00FF00FF) * 0x00640001) >> 16) & 0xFFFF;
1854}
1855
1856#ifdef FASTFLOAT_HAS_SIMD
1857

Callers 2

fast_float.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected