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

Function parse_eight_digits

app/src/ThirdParty/fast_float.h:4254–4261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4252
4253template <typename UC>
4254fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void
4255parse_eight_digits(UC const *&p, limb &value, size_t &counter,
4256 size_t &count) noexcept {
4257 value = value * 100000000 + parse_eight_digits_unrolled(p);
4258 p += 8;
4259 counter += 8;
4260 count += 8;
4261}
4262
4263template <typename UC>
4264fastfloat_really_inline FASTFLOAT_CONSTEXPR14 void

Callers 1

parse_mantissaFunction · 0.85

Calls 1

Tested by

no test coverage detected