Lines Matching defs:_Output
241 uint32_t _Output;
272 _Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigit >= 5);
285 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5);
291 __fd.__mantissa = _Output;
422 uint32_t _Output = __v.__mantissa;
424 const uint32_t __olength = __decimalLength9(_Output);
464 // Example: _Output == 1729, __olength == 4
486 if (_Output == 1) {
559 while (_Output >= 10000) {
561 const uint32_t __c = _Output - 10000 * (_Output / 10000);
563 const uint32_t __c = _Output % 10000;
565 _Output /= 10000;
571 if (_Output >= 100) {
572 const uint32_t __c = (_Output % 100) << 1;
573 _Output /= 100;
576 if (_Output >= 10) {
577 const uint32_t __c = _Output << 1;
580 *--_Mid = static_cast<char>('0' + _Output);
611 while (_Output >= 10000) {
613 const uint32_t __c = _Output - 10000 * (_Output / 10000);
615 const uint32_t __c = _Output % 10000;
617 _Output /= 10000;
624 if (_Output >= 100) {
625 const uint32_t __c = (_Output % 100) << 1;
626 _Output /= 100;
630 if (_Output >= 10) {
631 const uint32_t __c = _Output << 1;
636 __result[0] = static_cast<char>('0' + _Output);