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

12345678

/freebsd-current/usr.bin/localedef/bootstrap/
H A Dctype.h51 int (islower)(int);
/freebsd-current/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-current/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-current/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-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc17 using ::islower;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
/freebsd-current/stand/common/
H A Dinterp_backslash.c21 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/freebsd-current/sys/sys/
H A Dctype.h61 islower(int c) function
69 return (isupper(c) || islower(c));
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dctype.h22 int islower(int c);
50 # undef islower macro
/freebsd-current/sys/contrib/ncsw/inc/
H A Dctype_ext.h61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
80 if (islower(c))
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcctype.inc17 using std::islower;
/freebsd-current/usr.bin/caesar/
H A Dcaesar.c50 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
93 if (islower(ch))
/freebsd-current/lib/libc/locale/
H A Disctype.c112 #undef islower macro
114 islower(int c) function
/freebsd-current/include/
H A Dctype.h53 int islower(int);
92 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd-current/contrib/byacc/test/
H A Derr_syntax27.y118 if( islower( c )) {
H A Dquote_calc4.y103 if( islower( c )) {
H A Dcalc_code_imports.y100 if( islower( c )) {
H A Dcalc3.y118 if( islower( c )) {
H A Dcalc2.y115 if( islower( c )) {
H A Dcalc_code_all.y104 if( islower( c )) {
H A Dcalc_code_default.y100 if( islower( c )) {
H A Dcalc.y97 if( islower( c )) {
H A Dcalc_code_top.y100 if( islower( c )) {
H A Dcode_calc.y105 if( islower( c )) {
H A Dcalc_code_provides.y100 if( islower( c )) {

Completed in 312 milliseconds

12345678