Lines Matching refs:_Mid
447 char* _Mid; in __to_chars() local
506 _Mid = _First + __olength; in __to_chars()
509 _Mid = _First + _Total_fixed_length; in __to_chars()
530 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c0, 2); in __to_chars()
531 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c1, 2); in __to_chars()
532 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __d0, 2); in __to_chars()
533 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __d1, 2); in __to_chars()
545 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c0, 2); in __to_chars()
546 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c1, 2); in __to_chars()
551 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c, 2); in __to_chars()
555 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c, 2); in __to_chars()
557 *--_Mid = static_cast<char>('0' + __output2); in __to_chars()