MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / parse_eight_digits

Function parse_eight_digits

source/extern/fast_float.h:3337–3344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3335
3336template <typename UC>
3337fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void
3338parse_eight_digits(const UC *&p, limb &value, size_t &counter,
3339 size_t &count) noexcept {
3340 value = value * 100000000 + parse_eight_digits_unrolled(p);
3341 p += 8;
3342 counter += 8;
3343 count += 8;
3344}
3345
3346template <typename UC>
3347fastfloat_really_inline FASTFLOAT_CONSTEXPR14 void

Callers 1

parse_mantissaFunction · 0.85

Calls 1

Tested by

no test coverage detected