Searched refs:TOLOWER (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dstrcasecmp.c26 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) macro
45 c1 = TOLOWER (*p1);
46 c2 = TOLOWER (*p2);
H A Dstrncasecmp.c26 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) macro
45 c1 = TOLOWER (*p1);
46 c2 = TOLOWER (*p2);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/unicode/
H A Ducstr.c110 #define TOLOWER(c) (isupper(c) ? tolower(c) : (c)) macro
156 out[outpos++] = TOLOWER(s[i - 1]);
159 out[outpos++] = TOLOWER(s[len - 1]);
206 *p = casefold ? TOLOWER(s[i - 1]) : s[i - 1];
292 out[outpos++] = casefold ? TOLOWER(s[i - 1]) : s[i - 1];
295 out[outpos++] = casefold ? TOLOWER(s[len - 1]) : s[len - 1];
299 *ucs = casefold ? TOLOWER(s[i - 1]) : s[i - 1];
353 char c1 = TOLOWER(*s1);
354 char c2 = TOLOWER(*s2);
/osnet-11/usr/src/lib/libldap4/include/
H A Dportable.h193 #define TOLOWER(c) (isascii(c) && isupper(c) ? _tolower(c) : c) macro
196 #define TOLOWER(c) (isascii(c) && isupper(c) ? tolower(c) : c) macro
/osnet-11/usr/src/lib/libldap5/include/ldap/
H A Dportable.h226 #define TOLOWER(c) (isascii(c) && isupper(c) ? _tolower(c) : c) macro
229 #define TOLOWER(c) (isascii(c) && isupper(c) ? tolower(c) : c) macro

Completed in 23 milliseconds