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

1234567

/freebsd-9.3-release/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c52 if (islower((unsigned char)str[p]) )
88 if (islower((unsigned char)*c) )
112 if (islower((unsigned char)*c) )
/freebsd-9.3-release/sys/sys/
H A Dctype.h45 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
46 #define isalpha(c) (isupper(c) || islower(c))
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
H A Dinet_aton.c119 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-9.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h59 #undef islower macro
75 using ::islower;
/freebsd-9.3-release/sys/boot/common/
H A Dinterp_backslash.c24 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/freebsd-9.3-release/contrib/libstdc++/include/c_compatibility/
H A Dctype.h40 using std::islower;
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dcmap.cpp61 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;
/freebsd-9.3-release/games/caesar/
H A Dcaesar.c64 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
107 if (islower(ch))
/freebsd-9.3-release/include/
H A Dctype.h54 int islower(int);
93 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd-9.3-release/lib/libc/locale/
H A Disctype.c126 #undef islower macro
128 islower(c) function
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dinet_aton.c132 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dlwinetaton.c141 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-9.3-release/contrib/libstdc++/config/os/windiss/
H A Dctype_inline.h69 __ret = islower(__c);
/freebsd-9.3-release/lib/libc/iconv/
H A Dcitrus_bcs.h56 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
/freebsd-9.3-release/lib/libc/inet/
H A Dinet_network.c76 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dinet_addr.c144 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dnsap_addr.c59 if (islower(c))
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dinet_aton.c135 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-9.3-release/crypto/openssl/test/
H A Ddummytest.c45 if (islower((unsigned char)(*p)))
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/misc/
H A Dstraddr.c61 : islower(c) ? (c - 'a' + 10)
68 : islower(c) ? (c - 'a' + 10)
/freebsd-9.3-release/contrib/libpcap/
H A Detherent.c69 else if (islower(c))
/freebsd-9.3-release/contrib/libstdc++/config/os/generic/
H A Dctype_inline.h83 __testis = islower(__c);
/freebsd-9.3-release/contrib/texinfo/info/
H A Dinfo.h47 #define info_toupper(x) (islower (x) ? toupper (x) : x)
/freebsd-9.3-release/lib/libstand/
H A Dstand.h184 static __inline int islower(int c) function
206 return isupper(c) || islower(c);
216 return islower(c) ? c - 'a' + 'A' : c;

Completed in 125 milliseconds

1234567