Lines Matching +full:- +full:v
35 * least 64-bits get the fancy code for 64-bit values and platforms
36 * where 'int' is not at least 32-bits also get the fancy code for
37 * 32-bit values
94 /* r = n - q * 10 */ in udivmod10()
95 r = (char) (n - (((q << 2) + q) << 1)); in udivmod10()
99 * be +0/-1 of the real result. Check and adjust in udivmod10()
103 r -= 10; in udivmod10()
134 char hex = ('a' - '0' - 10 + 16) - base; in __ultoa_invert()
139 char v; in __ultoa_invert() local
142 val = udivmod(val, base, &v); in __ultoa_invert()
144 v = val % base; in __ultoa_invert()
147 if (v > 9) in __ultoa_invert()
148 v += hex; in __ultoa_invert()
149 v += '0'; in __ultoa_invert()
150 *str++ = v; in __ultoa_invert()