Lines Matching refs:c
52 char c; in strtol() local
63 c = *s++; in strtol()
64 } while (isspace((unsigned char)c)); in strtol()
65 if (c == '-') { in strtol()
67 c = *s++; in strtol()
70 if (c == '+') in strtol()
71 c = *s++; in strtol()
74 c == '0' && (*s == 'x' || *s == 'X') && in strtol()
78 c = s[1]; in strtol()
83 base = c == '0' ? 8 : 10; in strtol()
107 for ( ; ; c = *s++) { in strtol()
108 if (c >= '0' && c <= '9') in strtol()
109 c -= '0'; in strtol()
110 else if (c >= 'A' && c <= 'Z') in strtol()
111 c -= 'A' - 10; in strtol()
112 else if (c >= 'a' && c <= 'z') in strtol()
113 c -= 'a' - 10; in strtol()
116 if (c >= base) in strtol()
118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
123 acc += c; in strtol()