Lines Matching refs:c
49 int c; in strtoull() local
64 c = (unsigned char) *s++; in strtoull()
65 } while (isspace(c)); in strtoull()
66 if (c == '-') { in strtoull()
68 c = *s++; in strtoull()
71 if (c == '+') in strtoull()
72 c = *s++; in strtoull()
75 c == '0' && (*s == 'x' || *s == 'X')) { in strtoull()
76 c = s[1]; in strtoull()
81 base = c == '0' ? 8 : 10; in strtoull()
85 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoull()
86 if (isdigit(c)) in strtoull()
87 c -= '0'; in strtoull()
88 else if (isalpha(c)) in strtoull()
89 c -= isupper(c) ? 'A' - 10 : 'a' - 10; in strtoull()
92 if (c >= base) in strtoull()
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
103 acc += c; in strtoull()