/titanic_44/usr/src/common/util/ |
H A D | strtolctype.h | 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro 62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
|
/titanic_44/usr/src/lib/libast/common/regex/ |
H A D | regsub.c | 85 if (islower(c)) in subold() 95 else if (islower(c)) in subold() 144 if (islower(c)) in subold() 218 if (islower(c)) in subold() 228 else if (islower(c)) in subold()
|
H A D | regsubcomp.c | 237 if (islower(c)) in regsubcomp() 247 else if (islower(c)) in regsubcomp() 281 if (islower(c)) in regsubcomp()
|
H A D | regsubexec.c | 99 if (islower(c)) in sub() 119 else if (islower(c)) in sub()
|
/titanic_44/usr/src/lib/libpkg/common/ |
H A D | mappath.c | 41 #define mode(flag, pt) (!flag || ((flag == 1) && islower(pt[1])) || \ 118 islower(pt[1])) { in mappath() 227 islower(varname[1])) in mapvar()
|
/titanic_44/usr/src/cmd/mdb/common/libstand/ |
H A D | ctype.c | 35 islower(int c) in islower() function 57 return ((isupper(c) || islower(c)) ? 1 : 0); in isalpha()
|
/titanic_44/usr/src/lib/libast/common/tm/ |
H A D | tmword.c | 56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t) in tmword() 76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++; in tmword()
|
/titanic_44/usr/src/uts/common/sys/ |
H A D | ctype.h | 84 islower(char c) in islower() function 88 #pragma inline(islower)
|
/titanic_44/usr/src/lib/libbc/inc/5include/ |
H A D | ctype.h | 50 extern int islower(/* int c */); 72 #define islower(c) ((_ctype_ + 1)[c] & _L) macro
|
/titanic_44/usr/src/common/mpi/ |
H A D | mpi.h | 73 #ifndef islower 74 #define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro 77 #define isalpha(x) (isupper(x) || islower(x)) 80 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))
|
/titanic_44/usr/src/lib/libbc/libc/gen/common/ |
H A D | ctype_.c | 75 #undef islower 101 int islower(c) in islower() function
|
H A D | strtol.c | 30 islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
|
/titanic_44/usr/src/uts/common/inet/ipf/netinet/ |
H A D | ip_proxy.h | 134 #ifndef islower 135 #define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro 138 #define isalpha(x) (isupper(x) || islower(x))
|
/titanic_44/usr/src/lib/libsmbfs/smb/ |
H A D | subr.c | 193 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch); in smb_simplecrypt() 227 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch); in smb_simpledecrypt()
|
/titanic_44/usr/src/cmd/oamuser/lib/ |
H A D | vgname.c | 61 if (!(islower(c) || isdigit(c))) in valid_gname()
|
H A D | vprojname.c | 60 if (!(islower(c) || isdigit(c))) in valid_projname()
|
/titanic_44/usr/src/head/iso/ |
H A D | ctype_iso.h | 96 extern int islower(int);
|
/titanic_44/usr/src/lib/libbc/libc/inet/ |
H A D | inet_network.c | 64 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
|
H A D | inet_addr.c | 71 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
|
/titanic_44/usr/src/lib/libsocket/inet/ |
H A D | inet_network.c | 78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
|
/titanic_44/usr/src/uts/intel/sys/acpi/platform/ |
H A D | acsolaris.h | 91 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))
|
/titanic_44/usr/src/cmd/ypcmd/ |
H A D | mkalias.c | 260 if (ch == 'm' && cp[1] == 'c' && islower(cp[2])) in UpperCase() 262 if (islower(ch)) in UpperCase()
|
/titanic_44/usr/src/lib/libbc/inc/include/ |
H A D | ctype.h | 43 #define islower(c) ((_ctype_+1)[c]&_L) macro
|
/titanic_44/usr/src/stand/lib/sa/ |
H A D | ctype.h | 55 #define islower(c) ((__ctype + 1)[c] & _L) macro
|
/titanic_44/usr/src/lib/libresolv2/common/inet/ |
H A D | inet_network.c | 78 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
|