Searched refs:islower (Results 26 - 50 of 123) sorted by relevance

12345

/opensolaris-onvv-gate/usr/src/lib/pam_modules/authtok_check/
H A Dpacker.h79 #define CRACK_TOUPPER(a) (islower(a)?toupper(a):(a))
H A Drules.c261 if (islower(input)) {
353 } else if (islower(character)) {
/opensolaris-onvv-gate/usr/src/lib/libast/common/regex/
H A Dregsubcomp.c237 if (islower(c))
247 else if (islower(c))
281 if (islower(c))
H A Dregsubexec.c99 if (islower(c))
119 else if (islower(c))
/opensolaris-onvv-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h131 #ifndef islower
132 #define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
135 #define isalpha(x) (isupper(x) || islower(x))
/opensolaris-onvv-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_string.c223 if (!isupper(c) && !islower(c) &&
/opensolaris-onvv-gate/usr/src/cmd/ipf/lib/common/
H A Dinet_addr.c88 #define ISLOWER(x) islower((u_char)(x))
/opensolaris-onvv-gate/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))
/opensolaris-onvv-gate/usr/src/lib/libnsl/rpc/
H A Dinet_ntoa.c194 (c + 10 - (islower(c) ? 'a' : 'A'));
/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_ttl.c116 if (islower(ch))
/opensolaris-onvv-gate/usr/src/lib/nsswitch/files/common/
H A Dether_addr.c50 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/opensolaris-onvv-gate/usr/src/cmd/logadm/
H A Dkw.c248 if (c == 'N' || !islower(fn_peekc(src))) {
272 while (islower(fn_peekc(src)))
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/t/
H A Dposix.t250 ok( POSIX::islower('l'), 'islower' );
251 ok(!POSIX::islower('L'), 'islower' );
/opensolaris-onvv-gate/usr/src/cmd/ypcmd/
H A Dmkalias.c260 if (ch == 'm' && cp[1] == 'c' && islower(cp[2]))
262 if (islower(ch))
/opensolaris-onvv-gate/usr/src/lib/libsmbfs/smb/
H A Dsubr.c193 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch);
227 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch);
H A Dcharsets.c66 else if (islower(u))
/opensolaris-onvv-gate/usr/src/cmd/bnu/
H A Dstoa.c42 #define toupper(c) (islower(c) ? _toupper(c) : (c))
/opensolaris-onvv-gate/usr/src/cmd/pwck/
H A Dpwck.c156 else if (islower(buf[i]))
/opensolaris-onvv-gate/usr/src/lib/krb5/kadm5/srv/
H A Dserver_misc.c157 if (islower((unsigned char) c)) {
/opensolaris-onvv-gate/usr/src/lib/libnsl/dial/
H A Dstoa.c49 #define toupper(c) (islower(c) ? _toupper(c) : (c))
/opensolaris-onvv-gate/usr/src/lib/libsocket/inet/
H A Dether_addr.c179 islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/opensolaris-onvv-gate/usr/src/stand/lib/wanboot/
H A Dhttp_aux.c186 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
/opensolaris-onvv-gate/usr/src/lib/libldap5/include/ldap/
H A Dportable.h225 #define TOUPPER(c) (isascii(c) && islower(c) ? _toupper(c) : c)
228 #define TOUPPER(c) (isascii(c) && islower(c) ? toupper(c) : c)
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dex_cmds.c472 if (!islower(c))
971 if (!islower(c))
/opensolaris-onvv-gate/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/
H A Dcmd_mem.c140 if (!isupper(*c) && !islower(*c) &&

Completed in 211 milliseconds

12345