Searched refs:us1 (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/postfix-255/postfix/src/util/
H A Dstrcasecmp.c43 const unsigned char *us1 = (const unsigned char *) s1; local
46 while (tolower(*us1) == tolower(*us2++))
47 if (*us1++ == '\0')
49 return (tolower(*us1) - tolower(*--us2));
55 const unsigned char *us1 = (const unsigned char *) s1; local
59 if (tolower(*us1) != tolower(*us2++))
60 return (tolower(*us1) - tolower(*--us2));
61 if (*us1++ == '\0')
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/port/
H A Dstrcasecmp.c43 const unsigned char *us1 = (const unsigned char *)s1, local
46 while (tolower(*us1) == tolower(*us2++))
47 if (*us1++ == '\0')
49 return (tolower(*us1) - tolower(*--us2));
/macosx-10.10/tcpdump-61/tcpdump/
H A Dstrcasecmp.c71 *us1 = (u_char *)s1, local
74 while (cm[*us1] == cm[*us2++])
75 if (*us1++ == '\0')
77 return(cm[*us1] - cm[*--us2]);
86 *us1 = (u_char *)s1, local
89 while (--n >= 0 && cm[*us1] == cm[*us2++])
90 if (*us1++ == '\0')
92 return(n < 0 ? 0 : cm[*us1] - cm[*--us2]);
/macosx-10.10/Libc-1044.1.2/string/FreeBSD/
H A Dstrcasecmp.c49 *us1 = (const u_char *)s1, local
53 while (tolower_l(*us1, loc) == tolower_l(*us2++, loc))
54 if (*us1++ == '\0')
56 return (tolower_l(*us1, loc) - tolower_l(*--us2, loc));
74 *us1 = (const u_char *)s1, local
78 if (tolower_l(*us1, loc) != tolower_l(*us2++, loc))
79 return (tolower_l(*us1, loc) - tolower_l(*--us2, loc));
80 if (*us1++ == '\0')
/macosx-10.10/sudo-73/src/
H A Dstrcasecmp.c68 const unsigned char *us1 = (const unsigned char *) s1; local
71 while (ichars[*us1] == ichars[*us2++]) {
72 if (*us1++ == '\0')
75 return ichars[*us1] - ichars[*--us2];
84 const unsigned char *us1 = (const unsigned char *) s1; local
87 while (n != 0 && ichars[*us1] == ichars[*us2++]) {
88 if (*us1++ == '\0')
92 return n ? ichars[*us1] - ichars[*--us2] : 0;
/macosx-10.10/xnu-2782.1.97/osfmk/device/
H A Dsubrs.c231 const unsigned char *us1 = (const u_char *)s1, local
234 while (tolower(*us1) == tolower(*us2++))
235 if (*us1++ == '\0')
237 return (tolower(*us1) - tolower(*--us2));
244 const unsigned char *us1 = (const u_char *)s1, local
248 if (tolower(*us1) != tolower(*us2++))
249 return (tolower(*us1) - tolower(*--us2));
250 if (*us1++ == '\0')
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Daliastst.cpp256 UnicodeString us1("NULL");
262 us1 = rb1->getStringEx("locale", status);
271 if (us1.compare(uNewLoc)!=0 || us1.compare(us2)!=0 || status!=U_ZERO_ERROR) {
275 log(us1);
H A Dnumfmtst.cpp6378 UnicodeString us1(s1);
6379 return us1 != s2;
/macosx-10.10/ICU-531.30/icuSources/samples/ustring/
H A Dustring.cpp546 static UChar us1[40]; local
548 u_charsToUChars(cs1, us1, 33); /* include the terminating NUL */
549 u_UCharsToChars(us1, cs2, 33);
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dcheck-der.c1007 heim_universal_string us1 = { 1, NULL } , us2 = { 0, NULL }; local
1008 us1.data = &data;
1009 ret = der_heim_universal_string_cmp(&us1, &us2);
1016 heim_universal_string us1 = { 1, NULL } , us2 = { 1, NULL }; local
1017 us1.data = &data;
1019 ret = der_heim_universal_string_cmp(&us1, &us2);
/macosx-10.10/libpcap-48/libpcap/
H A Dpcap.c1091 *us1 = (const u_char *)s1, local
1094 while (cm[*us1] == cm[*us2++])
1095 if (*us1++ == '\0')
1097 return (cm[*us1] - cm[*--us2]);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcloctst.c3018 const char* us1; local
3043 us1 = ures_getLocaleByType(rb1, ULOC_ACTUAL_LOCALE, &status);
3052 if (strcmp(us1,newLoc)!=0 || strcmp(us1,us2)!=0 ) {
3056 log_verbose("ures_getStringByKey old:%s new:%s\n", us1, us2);

Completed in 374 milliseconds