Lines Matching refs:__c

130     const uint32_t __c = __digits - 10000 * (__digits / 10000);
132 const uint32_t __c = __digits % 10000;
135 const uint32_t __c0 = (__c % 100) << 1;
136 const uint32_t __c1 = (__c / 100) << 1;
142 const uint32_t __c = (__digits % 100) << 1;
144 std::memcpy(__result + __olength - __i - 2, __DIGIT_TABLE + __c, 2);
148 const uint32_t __c = __digits << 1;
149 std::memcpy(__result + __olength - __i - 2, __DIGIT_TABLE + __c, 2);
159 const uint32_t __c = __digits - 10000 * (__digits / 10000);
161 const uint32_t __c = __digits % 10000;
164 const uint32_t __c0 = (__c % 100) << 1;
165 const uint32_t __c1 = (__c / 100) << 1;
171 const uint32_t __c = (__digits % 100) << 1;
173 std::memcpy(__result + __olength + 1 - __i - 2, __DIGIT_TABLE + __c, 2);
177 const uint32_t __c = __digits << 1;
178 __result[2] = __DIGIT_TABLE[__c + 1];
180 __result[0] = __DIGIT_TABLE[__c];
190 const uint32_t __c = (__digits % 100) << 1;
192 std::memcpy(__result + __count - __i - 2, __DIGIT_TABLE + __c, 2);
195 const char __c = static_cast<char>('0' + (__digits % 10));
196 __result[__count - __i - 1] = __c;
208 const uint32_t __c = __digits - 10000 * (__digits / 10000);
210 const uint32_t __c = __digits % 10000;
213 const uint32_t __c0 = (__c % 100) << 1;
214 const uint32_t __c1 = (__c / 100) << 1;
400 const char __c = _Round[0];
401 if (__c == '.') {
403 } else if (__c == '9') {
407 if (__roundUp == 1 || __c % 2 != 0) {
408 _Round[0] = __c + 1;
619 const char __c = _Round[0];
620 if (__c == '.') {
622 } else if (__c == '9') {
626 if (__roundUp == 1 || __c % 2 != 0) {
627 _Round[0] = __c + 1;
655 const int32_t __c = __exp % 10;
657 _First[2] = static_cast<char>('0' + __c);