Lines Matching refs:__index
641 uint32_t __index;
644 __index = __olength + 1;
646 __index = 1;
650 __result[__index++] = 'e';
652 __result[__index++] = '-';
655 __result[__index++] = '+';
660 std::memcpy(__result + __index, __DIGIT_TABLE + 2 * (_Scientific_exponent / 10), 2);
661 __result[__index + 2] = static_cast<char>('0' + __c);
662 __index += 3;
664 std::memcpy(__result + __index, __DIGIT_TABLE + 2 * _Scientific_exponent, 2);
665 __index += 2;