Lines Matching refs:c
52 char c; in strtol() local
64 c = *s++; in strtol()
65 } while (isspace((unsigned char)c)); in strtol()
66 if (c == '-') { in strtol()
68 c = *s++; in strtol()
71 if (c == '+') in strtol()
72 c = *s++; in strtol()
75 c == '0' && (*s == 'x' || *s == 'X') && in strtol()
79 c = s[1]; in strtol()
84 base = c == '0' ? 8 : 10; in strtol()
108 for ( ; ; c = *s++) { in strtol()
109 if (c >= '0' && c <= '9') in strtol()
110 c -= '0'; in strtol()
111 else if (c >= 'A' && c <= 'Z') in strtol()
112 c -= 'A' - 10; in strtol()
113 else if (c >= 'a' && c <= 'z') in strtol()
114 c -= 'a' - 10; in strtol()
117 if (c >= base) in strtol()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
124 acc += c; in strtol()