Lines Matching refs:_Output
241 uint32_t _Output; in __f2d() local
272 …_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() local
424 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()
565 _Output /= 10000; in __to_chars()
571 if (_Output >= 100) { in __to_chars()
572 const uint32_t __c = (_Output % 100) << 1; in __to_chars()
573 _Output /= 100; in __to_chars()
576 if (_Output >= 10) { in __to_chars()
577 const uint32_t __c = _Output << 1; in __to_chars()
580 *--_Mid = static_cast<char>('0' + _Output); in __to_chars()
611 while (_Output >= 10000) { in __to_chars()
613 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
615 const uint32_t __c = _Output % 10000; in __to_chars()
617 _Output /= 10000; in __to_chars()
624 if (_Output >= 100) { in __to_chars()
625 const uint32_t __c = (_Output % 100) << 1; in __to_chars()
626 _Output /= 100; in __to_chars()
630 if (_Output >= 10) { in __to_chars()
631 const uint32_t __c = _Output << 1; in __to_chars()
636 __result[0] = static_cast<char>('0' + _Output); in __to_chars()