Searched defs:us1 (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dstrcasecmp.c76 const unsigned char *us1 = (const unsigned char *)s1;
79 while (charmap[*us1] == charmap[*us2])
81 if (*us1 == '\0')
83 ++us1;
86 return charmap[*us1] - charmap[*us2];
97 register const unsigned char *us1 = (const unsigned char *)s1;
102 if (cm[*us1] != cm[*us2++])
103 return (cm[*us1] - cm[*--us2]);
104 if (*us1++ == '\0')
75 const unsigned char *us1 = (const unsigned char *)s1; local
96 register const unsigned char *us1 = (const unsigned char *)s1; local
/osnet-11/usr/src/lib/libc/port/gen/
H A Dascii_strcasecmp.c50 const unsigned char *us1 = (const unsigned char *)s1; local
53 while (cm[*us1] == cm[*us2++])
54 if (*us1++ == '\0')
56 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dascii_strncasecmp.c50 const unsigned char *us1 = (const unsigned char *)s1; local
53 while (n != 0 && cm[*us1] == cm[*us2++]) {
54 if (*us1++ == '\0')
58 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dstrcasecmp.c45 const uchar_t *us1; local
58 us1 = (const uchar_t *)s1;
61 while (cm[*us1] == cm[*us2++])
62 if (*us1++ == '\0')
64 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dstrncasecmp.c45 const uchar_t *us1; local
58 us1 = (const uchar_t *)s1;
61 while (n != 0 && cm[*us1] == cm[*us2++]) {
62 if (*us1++ == '\0')
66 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
H A Dstrcasestr.c46 const uchar_t *us1 = (const uchar_t *)s1; local
52 return ((char *)us1);
55 while (*us1 != '\0') {
56 if (c == cm[*us1++]) {
57 tptr = us1;
58 while (cm[c = *++us2] == cm[*us1++] && c != '\0')
62 us1 = tptr;
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dstrcasecmp.c96 *us1 = (const u_char *)s1, local
99 while (cm[*us1] == cm[*us2++])
100 if (*us1++ == '\0')
102 return (cm[*us1] - cm[*--us2]);
109 *us1 = (const u_char *)s1, local
113 if (cm[*us1] != cm[*us2++])
114 return (cm[*us1] - cm[*--us2]);
115 if (*us1++ == '\0')
/osnet-11/usr/src/cmd/sendmail/src/
H A Dqueue.c3512 const unsigned char *us1 = (const unsigned char *) a; local
3515 while (ShuffledAlphabet[*us1] == ShuffledAlphabet[*us2++])
3517 if (*us1++ == '\0')
3520 return (ShuffledAlphabet[*us1] - ShuffledAlphabet[*--us2]);

Completed in 51 milliseconds