Home
last modified time | relevance | path

Searched refs:us2 (Results 1 – 11 of 11) sorted by relevance

/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dstrcasecmp.c47 const unsigned char *us2 = (const unsigned char *) s2; in strcasecmp() local
49 while (tolower(*us1) == tolower(*us2++)) in strcasecmp()
52 return (tolower(*us1) - tolower(*--us2)); in strcasecmp()
59 const unsigned char *us2 = (const unsigned char *) s2; in strncasecmp() local
62 if (tolower(*us1) != tolower(*us2++)) in strncasecmp()
63 return (tolower(*us1) - tolower(*--us2)); in strncasecmp()
/netbsd/src/external/bsd/tcpdump/dist/
Dascii_strcasecmp.c68 *us2 = (const unsigned char *)s2; in ascii_strcasecmp() local
70 while (cm[*us1] == cm[*us2++]) in ascii_strcasecmp()
73 return(cm[*us1] - cm[*--us2]); in ascii_strcasecmp()
81 *us2 = (const unsigned char *)s2; in ascii_strncasecmp() local
93 if (cm[*us1] != cm[*us2++]) { in ascii_strncasecmp()
109 return(cm[*us1] - cm[*--us2]); in ascii_strncasecmp()
/netbsd/src/external/bsd/libbind/dist/bsd/
Dstrcasecmp.c99 *us2 = (const u_char *)s2; in strcasecmp() local
101 while (cm[*us1] == cm[*us2++]) in strcasecmp()
104 return (cm[*us1] - cm[*--us2]); in strcasecmp()
112 *us2 = (const u_char *)s2; in strncasecmp() local
115 if (cm[*us1] != cm[*us2++]) in strncasecmp()
116 return (cm[*us1] - cm[*--us2]); in strncasecmp()
/netbsd/src/common/lib/libc/string/
Dstrcasecmp.c63 *us2 = (const unsigned char *)s2; in __weak_alias() local
68 while (tolower(*us1) == tolower(*us2++)) in __weak_alias()
71 return (tolower(*us1) - tolower(*--us2)); in __weak_alias()
Dstrncasecmp.c68 *us2 = (const unsigned char *)s2; in __weak_alias() local
71 if (tolower(*us1) != tolower(*us2++)) in __weak_alias()
72 return (tolower(*us1) - tolower(*--us2)); in __weak_alias()
/netbsd/src/external/bsd/file/dist/src/
Dstrcasestr.c53 *us2 = (const unsigned char *)s2; in _strncasecmp() local
56 if (tolower(*us1) != tolower(*us2++)) in _strncasecmp()
57 return tolower(*us1) - tolower(*--us2); in _strncasecmp()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/asn1/
Dcheck-der.c1012 heim_universal_string us1 = { 1, NULL } , us2 = { 0, NULL }; in test_misc_cmp() local
1014 ret = der_heim_universal_string_cmp(&us1, &us2); in test_misc_cmp()
1021 heim_universal_string us1 = { 1, NULL } , us2 = { 1, NULL }; in test_misc_cmp() local
1023 us2.data = &data; in test_misc_cmp()
1024 ret = der_heim_universal_string_cmp(&us1, &us2); in test_misc_cmp()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.opencl/
Ddatatypes.cl68 ushort2 us2 = (ushort2) (1, 2);
Dcallfuncs.cl124 ushort2 us2 = (ushort2) (1, 2);
/netbsd/src/external/bsd/libpcap/dist/
Dpcap.c3213 *us2 = (const u_char *)s2; local
3215 while (cm[*us1] == cm[*us2++])
3218 return (cm[*us1] - cm[*--us2]);
/netbsd/src/usr.bin/telnet/
Dcommands.c1551 env_help(const char *us1, char *us2) in env_help() argument