Home
last modified time | relevance | path

Searched refs:_Remainder (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Df2s.cpp359 uint64_t _Remainder = _Initial_remainder; in _Large_integer_to_chars() local
367 _Remainder = (_Remainder << 32) | _Data[_Idx]; in _Large_integer_to_chars()
370 const uint32_t _Quotient = static_cast<uint32_t>(__div1e9(_Remainder)); in _Large_integer_to_chars()
374 _Remainder = static_cast<uint32_t>(_Remainder) - 1000000000u * _Quotient; in _Large_integer_to_chars()
380 _Blocks[_Filled_blocks++] = static_cast<uint32_t>(_Remainder); in _Large_integer_to_chars()