Lines Matching defs:_Scientific_exponent
361 int32_t _Scientific_exponent = _Ryu_exponent + static_cast<int32_t>(__olength) - 1;
392 if (-4 <= _Scientific_exponent && _Scientific_exponent < 6) {
580 + (-100 < _Scientific_exponent && _Scientific_exponent < 100 ? 4 : 5); // + scientific exponent
651 if (_Scientific_exponent < 0) {
653 _Scientific_exponent = -_Scientific_exponent;
658 if (_Scientific_exponent >= 100) {
659 const int32_t __c = _Scientific_exponent % 10;
660 std::memcpy(__result + __index, __DIGIT_TABLE + 2 * (_Scientific_exponent / 10), 2);
664 std::memcpy(__result + __index, __DIGIT_TABLE + 2 * _Scientific_exponent, 2);