Lines Matching defs:_Output
267 uint64_t _Output;
311 _Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigit >= 5);
345 _Output = __vr + (__vr == __vm || __roundUp);
351 __fd.__mantissa = _Output;
358 uint64_t _Output = __v.__mantissa;
360 const uint32_t __olength = __decimalLength17(_Output);
400 // Example: _Output == 1729, __olength == 4
422 if (_Output == 1) {
514 // If _Output doesn't fit into uint32_t, we cut off 8 digits,
516 if ((_Output >> 32) != 0) {
518 const uint64_t __q = __div1e8(_Output);
519 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q);
520 _Output = __q;
535 uint32_t __output2 = static_cast<uint32_t>(_Output);
590 // If _Output doesn't fit into uint32_t, we cut off 8 digits,
592 if ((_Output >> 32) != 0) {
594 const uint64_t __q = __div1e8(_Output);
595 uint32_t __output2 = static_cast<uint32_t>(_Output) - 100000000 * static_cast<uint32_t>(__q);
596 _Output = __q;
611 uint32_t __output2 = static_cast<uint32_t>(_Output);