Home
last modified time | relevance | path

Searched refs:isupper (Results 1 – 25 of 180) sorted by relevance

12345678

/titanic_50/usr/src/lib/libast/common/regex/
H A Dregsub.c89 if (isupper(c)) in subold()
93 if (isupper(c)) in subold()
126 if (isupper(c)) in subold()
222 if (isupper(c)) in subold()
226 if (isupper(c)) in subold()
H A Dregsubcomp.c241 if (isupper(c)) in regsubcomp()
245 if (isupper(c)) in regsubcomp()
272 if (isupper(c)) in regsubcomp()
H A Dregsubexec.c108 if (isupper(c)) in sub()
117 if (isupper(c)) in sub()
/titanic_50/usr/src/lib/libast/common/comp/
H A Dstrcasecmp.c46 if (isupper(ac))
49 if (isupper(bc))
H A Dstrncasecmp.c50 if (isupper(ac))
53 if (isupper(bc))
/titanic_50/usr/src/cmd/mdb/common/libstand/
H A Dctype.c28 isupper(int c) in isupper() function
57 return ((isupper(c) || islower(c)) ? 1 : 0); in isalpha()
/titanic_50/usr/src/common/util/
H A Dstrtolctype.h60 #define isalpha(ch) (isupper(ch) || islower(ch))
65 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/titanic_50/usr/src/uts/common/sys/
H A Dctype.h91 isupper(char c) in isupper() function
95 #pragma inline(isupper)
/titanic_50/usr/src/lib/libbc/inc/5include/
H A Dctype.h54 extern int isupper(/* int c */);
76 #define isupper(c) ((_ctype_ + 1)[c] & _U) macro
/titanic_50/usr/src/ucbcmd/from/
H A Dfrom.c48 if (isupper(*name)) in main()
108 ch = isupper(*line) ? tolower(*line) : *line; in match()
/titanic_50/usr/src/lib/nsswitch/nis/common/
H A Dgethostent.c52 if (isupper(c)) {
61 if (isupper(c)) {
H A Dgethostent6.c53 if (isupper(c)) {
62 if (isupper(c)) {
/titanic_50/usr/src/lib/libnisdb/
H A Ddb_item.cc43 #define LOWER(c) (isupper((c)) ? tolower((c)) : (c))
48 #define LOWER(c) (isupper((c)) ? _tolower((c)) : (c))
/titanic_50/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h131 #ifndef isupper
132 #define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
138 #define isalpha(x) (isupper(x) || islower(x))
141 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
/titanic_50/usr/src/lib/krb5/kadm5/srv/
H A Dserver_misc.c91 if (isupper(*cp)) {
161 else if (isupper((unsigned char) c)) { in passwd_check()
/titanic_50/usr/src/cmd/sendmail/libsm/
H A Dstrto.c125 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
231 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/titanic_50/usr/src/common/mpi/
H A Dmpi.h70 #ifndef isupper
71 #define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
77 #define isalpha(x) (isupper(x) || islower(x))
83 #define tolower(x) (isupper(x) ? (x) + 'a' - 'A' : (x))
/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c74 #undef isupper
95 int isupper(c) in isupper() function
/titanic_50/usr/src/lib/libxcurses/src/libc/mks/
H A Dm_cmdnam.c61 if (isupper(*ap))
/titanic_50/usr/src/lib/libbc/libc/net/
H A Drcmd.c222 *p++ = isupper(*sp) ? tolower(*sp++) : *sp++; in ruserok()
292 *p = isupper(*p) ? tolower(*p) : *p; in _validuser()
386 *cp = isupper(*cp) ? tolower(*cp) : *cp; in _checkhost()
/titanic_50/usr/src/lib/libsmbfs/smb/
H A Dsubr.c192 ch = (isupper(ch) ? ('A' + (ch - 'A' + 13) % 26) : in smb_simplecrypt()
226 ch = (isupper(ch) ? ('A' + (ch - 'A' + 13) % 26) : in smb_simpledecrypt()
/titanic_50/usr/src/lib/pam_modules/authtok_check/
H A Drules.c268 if (isupper(input)) { in MatchClass()
295 if (isupper(class)) { in MatchClass()
355 } else if (isupper(character)) { in Char2Int()
/titanic_50/usr/src/head/iso/
H A Dctype_iso.h100 extern int isupper(int);
/titanic_50/usr/src/cmd/fs.d/autofs/
H A Dns_ldap.c999 if (isupper(str[i])) { in tosunds_str()
1002 if (isupper(str[i+1])) { in tosunds_str()
1063 if (isupper(str[i+1])) { in tounix_str()
1065 } else if ((str[i+1] == '[') && (isupper(str[i+2]))) { in tounix_str()
1070 if ((isupper(str[i-1])) && (openBracket == TRUE)) in tounix_str()
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dgenget.c48 #define LOWER(x) (isupper(x) ? tolower(x) : (x))

12345678