Lines Matching refs:_Output
267 uint64_t _Output; in __d2d() local
311 …_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() local
360 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()
520 _Output = __q; in __to_chars()
535 uint32_t __output2 = static_cast<uint32_t>(_Output); in __to_chars()
592 if ((_Output >> 32) != 0) { in __to_chars()
594 const uint64_t __q = __div1e8(_Output); in __to_chars()
595 uint32_t __output2 = static_cast<uint32_t>(_Output) - 100000000 * static_cast<uint32_t>(__q); in __to_chars()
596 _Output = __q; in __to_chars()
611 uint32_t __output2 = static_cast<uint32_t>(_Output); in __to_chars()