Searched refs:__output2 (Results 1 – 1 of 1) sorted by relevance
520 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q); in __to_chars() local523 const uint32_t __c = __output2 % 10000; in __to_chars()524 __output2 /= 10000; in __to_chars()525 const uint32_t __d = __output2 % 10000; in __to_chars()536 uint32_t __output2 = static_cast<uint32_t>(_Output); in __to_chars() local537 while (__output2 >= 10000) { in __to_chars()539 const uint32_t __c = __output2 - 10000 * (__output2 / 10000); in __to_chars()541 const uint32_t __c = __output2 % 10000; in __to_chars()543 __output2 /= 10000; in __to_chars()549 if (__output2 >= 100) { in __to_chars()[all …]