Lines Matching refs:_Output
268 uint64_t _Output; in __d2d() local
312 …_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __d2d()
346 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()
352 __fd.__mantissa = _Output; in __d2d()
359 uint64_t _Output = __v.__mantissa; in __to_chars() local
361 const uint32_t __olength = __decimalLength17(_Output); in __to_chars()
423 if (_Output == 1) { in __to_chars()
517 if ((_Output >> 32) != 0) { in __to_chars()
519 const uint64_t __q = __div1e8(_Output); in __to_chars()
520 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q); in __to_chars()
521 _Output = __q; in __to_chars()
536 uint32_t __output2 = static_cast<uint32_t>(_Output); in __to_chars()
593 if ((_Output >> 32) != 0) { in __to_chars()
595 const uint64_t __q = __div1e8(_Output); in __to_chars()
596 uint32_t __output2 = static_cast<uint32_t>(_Output) - 100000000 * static_cast<uint32_t>(__q); in __to_chars()
597 _Output = __q; in __to_chars()
612 uint32_t __output2 = static_cast<uint32_t>(_Output); in __to_chars()