Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 25 of 121) sorted by relevance

12345

/titanic_44/usr/src/common/util/
H A Dstrtolctype.h50 #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 Dregsub.c85 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 Dregsubcomp.c237 if (islower(c)) in regsubcomp()
247 else if (islower(c)) in regsubcomp()
281 if (islower(c)) in regsubcomp()
H A Dregsubexec.c99 if (islower(c)) in sub()
119 else if (islower(c)) in sub()
/titanic_44/usr/src/lib/libpkg/common/
H A Dmappath.c41 #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 Dctype.c35 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 Dtmword.c56 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 Dctype.h84 islower(char c) in islower() function
88 #pragma inline(islower)
/titanic_44/usr/src/lib/libbc/inc/5include/
H A Dctype.h50 extern int islower(/* int c */);
72 #define islower(c) ((_ctype_ + 1)[c] & _L) macro
/titanic_44/usr/src/common/mpi/
H A Dmpi.h73 #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 Dctype_.c75 #undef islower
101 int islower(c) in islower() function
H A Dstrtol.c30 islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/titanic_44/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h134 #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 Dsubr.c193 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 Dvgname.c61 if (!(islower(c) || isdigit(c))) in valid_gname()
H A Dvprojname.c60 if (!(islower(c) || isdigit(c))) in valid_projname()
/titanic_44/usr/src/head/iso/
H A Dctype_iso.h96 extern int islower(int);
/titanic_44/usr/src/lib/libbc/libc/inet/
H A Dinet_network.c64 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
H A Dinet_addr.c71 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
/titanic_44/usr/src/lib/libsocket/inet/
H A Dinet_network.c78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
/titanic_44/usr/src/uts/intel/sys/acpi/platform/
H A Dacsolaris.h91 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))
/titanic_44/usr/src/cmd/ypcmd/
H A Dmkalias.c260 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 Dctype.h43 #define islower(c) ((_ctype_+1)[c]&_L) macro
/titanic_44/usr/src/stand/lib/sa/
H A Dctype.h55 #define islower(c) ((__ctype + 1)[c] & _L) macro
/titanic_44/usr/src/lib/libresolv2/common/inet/
H A Dinet_network.c78 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));

12345