Searched refs:islower (Results 1 - 25 of 123) sorted by relevance

12345

/opensolaris-onvv-gate/usr/src/common/util/
H A Dstrtolctype.h46 #define isalpha(ch) (isupper(ch) || islower(ch))
48 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro
58 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/opensolaris-onvv-gate/usr/src/lib/libast/common/tm/
H A Dtmword.c56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t)
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++;
/opensolaris-onvv-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h50 extern int islower(/* int c */);
72 #define islower(c) ((_ctype_ + 1)[c] & _L) macro
/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dctype.h81 islower(char c) function
85 #pragma inline(islower)
/opensolaris-onvv-gate/usr/src/lib/libast/common/regex/
H A Dregsub.c85 if (islower(c))
95 else if (islower(c))
144 if (islower(c))
218 if (islower(c))
228 else if (islower(c))
/opensolaris-onvv-gate/usr/src/lib/libpkg/common/
H A Dmappath.c41 #define mode(flag, pt) (!flag || ((flag == 1) && islower(pt[1])) || \
118 islower(pt[1])) {
227 islower(varname[1]))
/opensolaris-onvv-gate/usr/src/cmd/oamuser/lib/
H A Dvgname.c61 if (!(islower(c) || isdigit(c)))
H A Dvprojname.c60 if (!(islower(c) || isdigit(c)))
H A Dvlogin.c67 if (islower(c))
/opensolaris-onvv-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h43 #define islower(c) ((_ctype_+1)[c]&_L) macro
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dstrtol.c30 islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
H A Dctype_.c75 #undef islower macro
101 int islower(c) function
/opensolaris-onvv-gate/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'));
/opensolaris-onvv-gate/usr/src/lib/libsocket/inet/
H A Dinet_network.c78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
/opensolaris-onvv-gate/usr/src/head/iso/
H A Dctype_iso.h86 extern int islower(int);
120 inline int islower(int c) { return (__ctype_mask[c] & _ISLOWER); } function in namespace:std
132 inline int islower(int c) { return ((__ctype + 1)[c] & _L); }
151 #define islower(c) (__ctype_mask[(int)(c)] & _ISLOWER)
163 #define islower(c) ((__ctype + 1)[(int)(c)] & _L)
187 #define islower(c) ((_ctype + 1)[(int)(c)] & _L)
/opensolaris-onvv-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Dcolor.c229 if ( islower(color[0]) == 0 ) /* explicit rgb or hsb request */
/opensolaris-onvv-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dtable.c48 #define TOLOWER(c) (islower(c) ? c : \
/opensolaris-onvv-gate/usr/src/head/
H A Dctype.h49 using std::islower;
/opensolaris-onvv-gate/usr/src/lib/libast/common/string/
H A Dchresc.c86 if (islower(c))
/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/inet/
H A Dinet_network.c78 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dnsap_addr.c57 if (islower(c))
/opensolaris-onvv-gate/usr/src/stand/lib/sa/
H A Dctype.h55 #define islower(c) ((__ctype + 1)[c] & _L) macro
/opensolaris-onvv-gate/usr/src/lib/libldap4/include/
H A Dportable.h192 #define TOUPPER(c) (isascii(c) && islower(c) ? _toupper(c) : c)
195 #define TOUPPER(c) (isascii(c) && islower(c) ? toupper(c) : c)
/opensolaris-onvv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dinet_aton.c133 (c + 10 - (islower(c) ? 'a' : 'A'));

Completed in 145 milliseconds

12345