Lines Matching refs:_Output
243 uint32_t _Output; in __f2d() local
274 …_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __f2d()
287 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5); in __f2d()
293 __fd.__mantissa = _Output; in __f2d()
424 uint32_t _Output = __v.__mantissa; in __to_chars() local
426 const uint32_t __olength = __decimalLength9(_Output); in __to_chars()
488 if (_Output == 1) { in __to_chars()
561 while (_Output >= 10000) { in __to_chars()
563 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
565 const uint32_t __c = _Output % 10000; in __to_chars()
567 _Output /= 10000; in __to_chars()
573 if (_Output >= 100) { in __to_chars()
574 const uint32_t __c = (_Output % 100) << 1; in __to_chars()
575 _Output /= 100; in __to_chars()
578 if (_Output >= 10) { in __to_chars()
579 const uint32_t __c = _Output << 1; in __to_chars()
582 *--_Mid = static_cast<char>('0' + _Output); in __to_chars()
613 while (_Output >= 10000) { in __to_chars()
615 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
617 const uint32_t __c = _Output % 10000; in __to_chars()
619 _Output /= 10000; in __to_chars()
626 if (_Output >= 100) { in __to_chars()
627 const uint32_t __c = (_Output % 100) << 1; in __to_chars()
628 _Output /= 100; in __to_chars()
632 if (_Output >= 10) { in __to_chars()
633 const uint32_t __c = _Output << 1; in __to_chars()
638 __result[0] = static_cast<char>('0' + _Output); in __to_chars()