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

/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dstrcasecmp.c77 const unsigned char *us2 = (const unsigned char *)s2;
79 while (charmap[*us1] == charmap[*us2])
84 ++us2;
86 return charmap[*us1] - charmap[*us2];
98 register const unsigned char *us2 = (const unsigned char *)s2;
102 if (cm[*us1] != cm[*us2++])
103 return (cm[*us1] - cm[*--us2]);
76 const unsigned char *us2 = (const unsigned char *)s2; local
97 register const unsigned char *us2 = (const unsigned char *)s2; local
/osnet-11/usr/src/lib/libc/port/gen/
H A Dascii_strcasecmp.c51 const unsigned char *us2 = (const unsigned char *)s2; local
53 while (cm[*us1] == cm[*us2++])
56 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dascii_strncasecmp.c51 const unsigned char *us2 = (const unsigned char *)s2; local
53 while (n != 0 && cm[*us1] == cm[*us2++]) {
58 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dstrcasecmp.c46 const uchar_t *us2; local
59 us2 = (const uchar_t *)s2;
61 while (cm[*us1] == cm[*us2++])
64 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dstrncasecmp.c46 const uchar_t *us2; local
59 us2 = (const uchar_t *)s2;
61 while (n != 0 && cm[*us1] == cm[*us2++]) {
66 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
H A Dstrcasestr.c47 const uchar_t *us2 = (const uchar_t *)s2; local
51 if (us2 == NULL || *us2 == '\0')
54 c = cm[*us2];
58 while (cm[c = *++us2] == cm[*us1++] && c != '\0')
63 us2 = (const uchar_t *)s2;
64 c = cm[*us2];
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dstrcasecmp.c97 *us2 = (const u_char *)s2; local
99 while (cm[*us1] == cm[*us2++])
102 return (cm[*us1] - cm[*--us2]);
110 *us2 = (const u_char *)s2; local
113 if (cm[*us1] != cm[*us2++])
114 return (cm[*us1] - cm[*--us2]);
/osnet-11/usr/src/cmd/sendmail/src/
H A Dqueue.c3513 const unsigned char *us2 = (const unsigned char *) b; local
3515 while (ShuffledAlphabet[*us1] == ShuffledAlphabet[*us2++])
3520 return (ShuffledAlphabet[*us1] - ShuffledAlphabet[*--us2]);

Completed in 38 milliseconds