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

12345678

/freebsd-13-stable/usr.bin/localedef/bootstrap/
H A Dctype.h55 int islower(int);
/freebsd-13-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-13-stable/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-13-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c54 if (islower((unsigned char)str[p]) )
90 if (islower((unsigned char)*c) )
114 if (islower((unsigned char)*c) )
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
/freebsd-13-stable/sys/sys/
H A Dctype.h63 islower(int c) function
71 return (isupper(c) || islower(c));
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dctype.h22 int islower(int c);
48 #undef islower macro
/freebsd-13-stable/stand/common/
H A Dinterp_backslash.c24 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Dctype_ext.h61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
80 if (islower(c))
/freebsd-13-stable/lib/libc/locale/
H A Disctype.c118 #undef islower macro
120 islower(int c) function
/freebsd-13-stable/usr.bin/caesar/
H A Dcaesar.c64 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
107 if (islower(ch))
/freebsd-13-stable/include/
H A Dctype.h56 int islower(int);
95 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd-13-stable/lib/libc/iconv/
H A Dcitrus_bcs.h58 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
/freebsd-13-stable/lib/libc/inet/
H A Dinet_network.c77 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
/freebsd-13-stable/contrib/unbound/compat/
H A Dinet_aton.c122 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
/freebsd-13-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 Dcalc_code_all.y104 if( islower( c )) {
H A Dcalc_code_default.y100 if( islower( c )) {
H A Dcalc_code_imports.y100 if( islower( c )) {
H A Dcalc_code_provides.y100 if( islower( c )) {
H A Dcalc_code_requires.y100 if( islower( c )) {
H A Dcalc_code_top.y100 if( islower( c )) {
H A Dcode_calc.y105 if( islower( c )) {

Completed in 285 milliseconds

12345678