s1                 40 usr/lib/libc/string/memcmp.c memcmp(s1, s2, n)
s1                 41 usr/lib/libc/string/memcmp.c 	const void *s1, *s2;
s1                 45 usr/lib/libc/string/memcmp.c 		const unsigned char *p1 = s1, *p2 = s2;
s1                 37 usr/lib/libc/string/strcasecmp.c strcasecmp(s1, s2)
s1                 38 usr/lib/libc/string/strcasecmp.c 	const char *s1, *s2;
s1                 40 usr/lib/libc/string/strcasecmp.c 	const unsigned char *us1 = (const unsigned char *)s1,
s1                 50 usr/lib/libc/string/strcasecmp.c strncasecmp(s1, s2, n)
s1                 51 usr/lib/libc/string/strcasecmp.c 	const char *s1, *s2;
s1                 54 usr/lib/libc/string/strcasecmp.c 	if (s1 == NULL || s2 == NULL)
s1                 58 usr/lib/libc/string/strcasecmp.c 		const unsigned char *us1 = (const unsigned char *)s1,
s1                 40 usr/lib/libc/string/strcmp.c strcmp(s1, s2)
s1                 41 usr/lib/libc/string/strcmp.c 	const char *s1, *s2;
s1                 43 usr/lib/libc/string/strcmp.c 	while (*s1 == *s2++)
s1                 44 usr/lib/libc/string/strcmp.c 		if (*s1++ == 0)
s1                 46 usr/lib/libc/string/strcmp.c 	return (*(const unsigned char *)s1 - *(const unsigned char *)--s2);
s1                 40 usr/lib/libc/string/strcoll.c strcoll(s1, s2)
s1                 41 usr/lib/libc/string/strcoll.c 	const char *s1, *s2;
s1                 44 usr/lib/libc/string/strcoll.c 	return (strcmp(s1, s2));
s1                 40 usr/lib/libc/string/strcspn.c strcspn(s1, s2)
s1                 41 usr/lib/libc/string/strcspn.c 	const char *s1;
s1                 51 usr/lib/libc/string/strcspn.c 	for (p = s1;;) {
s1                 56 usr/lib/libc/string/strcspn.c 				return (p - 1 - s1);
s1                 34 usr/lib/libc/string/strncmp.c strncmp(s1, s2, n)
s1                 35 usr/lib/libc/string/strncmp.c 	const char *s1, *s2;
s1                 42 usr/lib/libc/string/strncmp.c 		if (*s1 != *s2++)
s1                 43 usr/lib/libc/string/strncmp.c 			return (*(unsigned char *)s1 - *(unsigned char *)--s2);
s1                 44 usr/lib/libc/string/strncmp.c 		if (*s1++ == 0)
s1                 37 usr/lib/libc/string/strpbrk.c strpbrk(s1, s2)
s1                 38 usr/lib/libc/string/strpbrk.c 	const char *s1, *s2;
s1                 43 usr/lib/libc/string/strpbrk.c 	while ((c = *s1++) != 0) {
s1                 46 usr/lib/libc/string/strpbrk.c 				return ((char *)(s1 - 1));
s1                 37 usr/lib/libc/string/strspn.c strspn(s1, s2)
s1                 38 usr/lib/libc/string/strspn.c 	const char *s1;
s1                 41 usr/lib/libc/string/strspn.c 	const char *p = s1, *spanp;
s1                 52 usr/lib/libc/string/strspn.c 	return (p - 1 - s1);