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

Function parse_one_digit

app/src/ThirdParty/fast_float.h:4264–4271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4262
4263template <typename UC>
4264fastfloat_really_inline FASTFLOAT_CONSTEXPR14 void
4265parse_one_digit(UC const *&p, limb &value, size_t &counter,
4266 size_t &count) noexcept {
4267 value = value * 10 + limb(*p - UC('0'));
4268 p++;
4269 counter++;
4270 count++;
4271}
4272
4273fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void
4274add_native(bigint &big, limb power, limb value) noexcept {

Callers 1

parse_mantissaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected