Lines Matching defs:s
44 const unsigned char *s = (const unsigned char *)s_arg;
57 if (s == NULL || base == 1 || base > MAX_BASE) {
62 while ((c = *s) != 0 && isspace(c))
63 s++;
72 c = *++s;
86 else if (s[1] == 'x' || s[1] == 'X')
92 if (base == 16 && c == '0' && (s[1] == 'x' || s[1] == 'X'))
93 c = *(s += 2);
105 for (c = *++s; c != '\0'; c = *++s) {
126 while ((c = *s) != 0) {
129 s++;
164 uu_strtoint(const char *s, void *v, size_t sz, int base,
199 if (strtoint(s, &val_u, base, 1) == -1)
235 uu_strtouint(const char *s, void *v, size_t sz, int base,
269 if (strtoint(s, &val, base, 0) == -1)