MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / add_native

Function add_native

external/include/fast_float/fast_float.h:2670–2674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2668}
2669
2670fastfloat_really_inline
2671void add_native(bigint& big, limb power, limb value) noexcept {
2672 big.mul(power);
2673 big.add(value);
2674}
2675
2676fastfloat_really_inline void round_up_bigint(bigint& big, size_t& count) noexcept {
2677 // need to round-up the digits, but need to avoid rounding

Callers 2

round_up_bigintFunction · 0.85
parse_mantissaFunction · 0.85

Calls 2

mulMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected