Searched refs:_Output (Results 1 – 3 of 3) sorted by relevance
241 uint32_t _Output; in __f2d() local272 …_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __f2d()285 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5); in __f2d()291 __fd.__mantissa = _Output; in __f2d()422 uint32_t _Output = __v.__mantissa; in __to_chars() local424 const uint32_t __olength = __decimalLength9(_Output); in __to_chars()486 if (_Output == 1) { in __to_chars()559 while (_Output >= 10000) { in __to_chars()561 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()563 const uint32_t __c = _Output % 10000; in __to_chars()[all …]
267 uint64_t _Output; in __d2d() local311 …_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __d2d()345 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()351 __fd.__mantissa = _Output; in __d2d()358 uint64_t _Output = __v.__mantissa; in __to_chars() local360 const uint32_t __olength = __decimalLength17(_Output); in __to_chars()422 if (_Output == 1) { in __to_chars()516 if ((_Output >> 32) != 0) { in __to_chars()518 const uint64_t __q = __div1e8(_Output); in __to_chars()519 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q); in __to_chars()[all …]
27 template <class _Input1, class _Input2, class _Output,32 weakly_incrementable<_Output> &&33 indirectly_copyable<_Input1, _Output> &&34 indirectly_copyable<_Input2, _Output> &&