/titanic_50/usr/src/lib/libast/common/regex/ |
H A D | regsub.c | 89 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 D | regsubcomp.c | 241 if (isupper(c)) in regsubcomp() 245 if (isupper(c)) in regsubcomp() 272 if (isupper(c)) in regsubcomp()
|
H A D | regsubexec.c | 108 if (isupper(c)) in sub() 117 if (isupper(c)) in sub()
|
/titanic_50/usr/src/lib/libast/common/comp/ |
H A D | strcasecmp.c | 46 if (isupper(ac)) 49 if (isupper(bc))
|
H A D | strncasecmp.c | 50 if (isupper(ac)) 53 if (isupper(bc))
|
/titanic_50/usr/src/cmd/mdb/common/libstand/ |
H A D | ctype.c | 28 isupper(int c) in isupper() function 57 return ((isupper(c) || islower(c)) ? 1 : 0); in isalpha()
|
/titanic_50/usr/src/common/util/ |
H A D | strtolctype.h | 60 #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 D | ctype.h | 91 isupper(char c) in isupper() function 95 #pragma inline(isupper)
|
/titanic_50/usr/src/lib/libbc/inc/5include/ |
H A D | ctype.h | 54 extern int isupper(/* int c */); 76 #define isupper(c) ((_ctype_ + 1)[c] & _U) macro
|
/titanic_50/usr/src/ucbcmd/from/ |
H A D | from.c | 48 if (isupper(*name)) in main() 108 ch = isupper(*line) ? tolower(*line) : *line; in match()
|
/titanic_50/usr/src/lib/nsswitch/nis/common/ |
H A D | gethostent.c | 52 if (isupper(c)) { 61 if (isupper(c)) {
|
H A D | gethostent6.c | 53 if (isupper(c)) { 62 if (isupper(c)) {
|
/titanic_50/usr/src/lib/libnisdb/ |
H A D | db_item.cc | 43 #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 D | ip_proxy.h | 131 #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 D | server_misc.c | 91 if (isupper(*cp)) { 161 else if (isupper((unsigned char) c)) { in passwd_check()
|
/titanic_50/usr/src/cmd/sendmail/libsm/ |
H A D | strto.c | 125 c -= isupper(c) ? 'A' - 10 : 'a' - 10; 231 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
|
/titanic_50/usr/src/common/mpi/ |
H A D | mpi.h | 70 #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 D | ctype_.c | 74 #undef isupper 95 int isupper(c) in isupper() function
|
/titanic_50/usr/src/lib/libxcurses/src/libc/mks/ |
H A D | m_cmdnam.c | 61 if (isupper(*ap))
|
/titanic_50/usr/src/lib/libbc/libc/net/ |
H A D | rcmd.c | 222 *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 D | subr.c | 192 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 D | rules.c | 268 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 D | ctype_iso.h | 100 extern int isupper(int);
|
/titanic_50/usr/src/cmd/fs.d/autofs/ |
H A D | ns_ldap.c | 999 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 D | genget.c | 48 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
|