Lines Matching refs:__c

522       const uint32_t __c = __output2 % 10000;  in __to_chars()  local
525 const uint32_t __c0 = (__c % 100) << 1; in __to_chars()
526 const uint32_t __c1 = (__c / 100) << 1; in __to_chars()
538 const uint32_t __c = __output2 - 10000 * (__output2 / 10000); in __to_chars() local
540 const uint32_t __c = __output2 % 10000; in __to_chars()
543 const uint32_t __c0 = (__c % 100) << 1; in __to_chars()
544 const uint32_t __c1 = (__c / 100) << 1; in __to_chars()
549 const uint32_t __c = (__output2 % 100) << 1; in __to_chars() local
551 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c, 2); in __to_chars()
554 const uint32_t __c = __output2 << 1; in __to_chars() local
555 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c, 2); in __to_chars()
598 const uint32_t __c = __output2 % 10000; in __to_chars() local
601 const uint32_t __c0 = (__c % 100) << 1; in __to_chars()
602 const uint32_t __c1 = (__c / 100) << 1; in __to_chars()
614 const uint32_t __c = __output2 - 10000 * (__output2 / 10000); in __to_chars() local
616 const uint32_t __c = __output2 % 10000; in __to_chars()
619 const uint32_t __c0 = (__c % 100) << 1; in __to_chars()
620 const uint32_t __c1 = (__c / 100) << 1; in __to_chars()
626 const uint32_t __c = (__output2 % 100) << 1; in __to_chars() local
628 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c, 2); in __to_chars()
632 const uint32_t __c = __output2 << 1; in __to_chars() local
634 __result[2] = __DIGIT_TABLE[__c + 1]; in __to_chars()
635 __result[0] = __DIGIT_TABLE[__c]; in __to_chars()
659 const int32_t __c = _Scientific_exponent % 10; in __to_chars() local
661 __result[__index + 2] = static_cast<char>('0' + __c); in __to_chars()