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

123456789

/freebsd-11.0-release/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-11.0-release/sys/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-11.0-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-11.0-release/sys/sys/
H A Dctype.h45 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
46 #define isalpha(c) (isupper(c) || islower(c))
/freebsd-11.0-release/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
H A Dinet_aton.c119 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-11.0-release/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h59 #undef islower macro
75 using ::islower;
/freebsd-11.0-release/contrib/libc++/include/
H A Dctype.h23 int islower(int c);
58 #undef islower macro
/freebsd-11.0-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-11.0-release/contrib/libstdc++/include/c_compatibility/
H A Dctype.h40 using std::islower;
/freebsd-11.0-release/sys/contrib/ncsw/inc/
H A Dctype_ext.h61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
80 if (islower(c))
/freebsd-11.0-release/contrib/groff/src/libs/libgroff/
H A Dcmap.cpp61 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;
/freebsd-11.0-release/lib/libc/locale/
H A Disctype.c116 #undef islower macro
118 islower(int c) function
/freebsd-11.0-release/usr.bin/caesar/
H A Dcaesar.c64 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
107 if (islower(ch))
/freebsd-11.0-release/include/
H A Dctype.h54 int islower(int);
93 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd-11.0-release/contrib/unbound/compat/
H A Dinet_aton.c122 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
/freebsd-11.0-release/lib/libc/iconv/
H A Dcitrus_bcs.h56 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
/freebsd-11.0-release/lib/libc/inet/
H A Dinet_network.c75 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
/freebsd-11.0-release/contrib/libstdc++/config/os/windiss/
H A Dctype_inline.h69 __ret = islower(__c);
/freebsd-11.0-release/contrib/ntp/lib/isc/
H A Dinet_aton.c135 (c + 10 - (islower(c) ? 'a' : 'A'));
/freebsd-11.0-release/contrib/apr/include/
H A Dapr_lib.h212 /** @see islower*/
213 #define apr_islower(c) (islower(((unsigned char)(c))))
/freebsd-11.0-release/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 )) {

Completed in 207 milliseconds

123456789