Lines Matching defs:__olength
360 const uint32_t __olength = __decimalLength17(_Output);
361 int32_t _Scientific_exponent = _Ryu_exponent + static_cast<int32_t>(__olength) - 1;
367 if (__olength == 1) {
377 _Lower = -static_cast<int32_t>(__olength + 3);
400 // Example: _Output == 1729, __olength == 4
409 // -1 | 172.9 | 3 | __olength + 1 | This case can't happen for
410 // -2 | 17.29 | 2 | | __olength == 1, but no additional
417 const int32_t _Whole_digits = static_cast<int32_t>(__olength) + _Ryu_exponent;
438 _Total_fixed_length = __olength + 1;
506 _Mid = _First + __olength;
562 std::memset(_First + __olength, '0', static_cast<size_t>(_Ryu_exponent));
579 const uint32_t _Total_scientific_length = __olength + (__olength > 1) // digits + possible decimal point
605 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c0, 2);
606 std::memcpy(__result + __olength - __i - 3, __DIGIT_TABLE + __c1, 2);
607 std::memcpy(__result + __olength - __i - 5, __DIGIT_TABLE + __d0, 2);
608 std::memcpy(__result + __olength - __i - 7, __DIGIT_TABLE + __d1, 2);
621 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c0, 2);
622 std::memcpy(__result + __olength - __i - 3, __DIGIT_TABLE + __c1, 2);
628 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c, 2);
642 if (__olength > 1) {
644 __index = __olength + 1;