Lines Matching refs:c
52 char c; in strtoull() local
61 c = *s++; in strtoull()
62 } while (isspace((unsigned char)c)); in strtoull()
63 if (c == '-') { in strtoull()
65 c = *s++; in strtoull()
68 if (c == '+') in strtoull()
69 c = *s++; in strtoull()
72 c == '0' && (*s == 'x' || *s == 'X') && in strtoull()
76 c = s[1]; in strtoull()
81 base = c == '0' ? 8 : 10; in strtoull()
86 for ( ; ; c = *s++) { in strtoull()
87 if (c >= '0' && c <= '9') in strtoull()
88 c -= '0'; in strtoull()
89 else if (c >= 'A' && c <= 'Z') in strtoull()
90 c -= 'A' - 10; in strtoull()
91 else if (c >= 'a' && c <= 'z') in strtoull()
92 c -= 'a' - 10; in strtoull()
95 if (c >= base) in strtoull()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
102 acc += c; in strtoull()