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

/macosx-10.9.5/postfix-252/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.9.5/tcl-102/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.9.5/tcpdump-56/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.9.5/Libc-997.90.3/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.9.5/sudo-72/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.9.5/xnu-2422.115.4/osfmk/device/
H A Dsubrs.c230 const unsigned char *us1 = (const u_char *)s1, local
233 while (tolower(*us1) == tolower(*us2++))
234 if (*us1++ == '\0')
236 return (tolower(*us1) - tolower(*--us2));
243 const unsigned char *us1 = (const u_char *)s1, local
247 if (tolower(*us1) != tolower(*us2++))
248 return (tolower(*us1) - tolower(*--us2));
249 if (*us1++ == '\0')
/macosx-10.9.5/ICU-511.35/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.cpp6255 UnicodeString us1(s1);
6256 return us1 != s2;
/macosx-10.9.5/ICU-511.35/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.9.5/Heimdal-323.92.1/lib/asn1/
H A Dcheck-der.c1005 heim_universal_string us1 = { 1, NULL } , us2 = { 0, NULL }; local
1006 us1.data = &data;
1007 ret = der_heim_universal_string_cmp(&us1, &us2);
1014 heim_universal_string us1 = { 1, NULL } , us2 = { 1, NULL }; local
1015 us1.data = &data;
1017 ret = der_heim_universal_string_cmp(&us1, &us2);
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap.c746 *us1 = (const u_char *)s1, local
749 while (cm[*us1] == cm[*us2++])
750 if (*us1++ == '\0')
752 return (cm[*us1] - cm[*--us2]);
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcloctst.c2932 const char* us1; local
2957 us1 = ures_getLocaleByType(rb1, ULOC_ACTUAL_LOCALE, &status);
2966 if (strcmp(us1,newLoc)!=0 || strcmp(us1,us2)!=0 ) {
2970 log_verbose("ures_getStringByKey old:%s new:%s\n", us1, us2);

Completed in 342 milliseconds