Searched refs:_Output (Results 1 – 3 of 3) sorted by relevance
241 uint32_t _Output; in __f2d() local486 if (_Output == 1) { in __to_chars()561 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()565 _Output /= 10000; in __to_chars()573 _Output /= 100; in __to_chars()576 if (_Output >= 10) { in __to_chars()613 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()617 _Output /= 10000; in __to_chars()624 if (_Output >= 100) { in __to_chars()626 _Output /= 100; in __to_chars()[all …]
267 uint64_t _Output; in __d2d() local345 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()351 __fd.__mantissa = _Output; in __d2d()358 uint64_t _Output = __v.__mantissa; in __to_chars() local422 if (_Output == 1) { in __to_chars()516 if ((_Output >> 32) != 0) { in __to_chars()518 const uint64_t __q = __div1e8(_Output); in __to_chars()520 _Output = __q; in __to_chars()592 if ((_Output >> 32) != 0) { in __to_chars()594 const uint64_t __q = __div1e8(_Output); 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> &&