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

123456789

/freebsd-10-stable/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-10-stable/cddl/contrib/opensolaris/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')
/freebsd-10-stable/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
/freebsd-10-stable/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h59 #undef islower macro
75 using ::islower;
/freebsd-10-stable/sys/sys/
H A Dctype.h61 islower(int c) function
69 return (isupper(c) || islower(c));
/freebsd-10-stable/sys/boot/common/
H A Dinterp_backslash.c24 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/freebsd-10-stable/contrib/libstdc++/include/c_compatibility/
H A Dctype.h40 using std::islower;
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Dcmap.cpp61 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;
/freebsd-10-stable/games/caesar/
H A Dcaesar.c64 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
107 if (islower(ch))
/freebsd-10-stable/include/
H A Dctype.h54 int islower(int);
93 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd-10-stable/lib/libc/locale/
H A Disctype.c126 #undef islower macro
128 islower(c) function
/freebsd-10-stable/contrib/apr/include/
H A Dapr_lib.h212 /** @see islower*/
213 #define apr_islower(c) (islower(((unsigned char)(c))))
/freebsd-10-stable/contrib/byacc/test/
H A Dcalc.y97 if( islower( c )) {
H A Dcalc2.y115 if( islower( c )) {
H A Dcalc3.y118 if( islower( c )) {
H A Dcode_calc.y103 if( islower( c )) {
H A Derr_syntax27.y118 if( islower( c )) {
H A Dpure_calc.y107 if( islower( c )) {
H A Dquote_calc.y103 if( islower( c )) {
H A Dquote_calc2.y103 if( islower( c )) {
H A Dquote_calc3.y103 if( islower( c )) {
H A Dquote_calc4.y103 if( islower( c )) {
/freebsd-10-stable/contrib/ldns/compat/
H A Dinet_aton.c122 (c + 10 - (islower((int) c) ? 'a' : 'A'));
/freebsd-10-stable/contrib/libstdc++/config/os/windiss/
H A Dctype_inline.h69 __ret = islower(__c);
/freebsd-10-stable/lib/libc/iconv/
H A Dcitrus_bcs.h56 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')

Completed in 147 milliseconds

123456789