Lines Matching refs:s
29 const char *s = nptr; in strtoul_hex() local
39 c = *s; in strtoul_hex()
40 s++; in strtoul_hex()
43 if ((c == '0') && ((*s == 'x') || (*s == 'X'))) { in strtoul_hex()
44 c = s[1]; in strtoul_hex()
45 s += 2; in strtoul_hex()
62 c = *s; in strtoul_hex()
63 s++; in strtoul_hex()
75 char *s = s_arg; in strchr() local
76 while ((*s != '\0') && (*s != ch)) { in strchr()
77 ++s; in strchr()
80 return ((*s) != '\0') ? s : NULL; in strchr()
111 int32_t strncpy_s(char *d, size_t dmax, const char *s, size_t slen) in strncpy_s() argument
115 size_t len = strnlen_s(s, dmax); in strncpy_s()
118 ret = memcpy_s(d, dmax, s, len); in strncpy_s()