/freebsd/crypto/openssh/openbsd-compat/ |
H A D | fnmatch.c | 228 (isupper((unsigned char)**string) || in fnmatch_ch() 229 isupper((unsigned char)*startch) || in fnmatch_ch() 230 isupper((unsigned char)**pattern)) && in fnmatch_ch() 244 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 245 isupper((unsigned char)**pattern)) && in fnmatch_ch() 271 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 272 isupper((unsigned char)**pattern)) && in fnmatch_ch()
|
H A D | charclass.h | 26 { "upper", isupper },
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cctype | 29 int isupper(int c); 94 #ifdef isupper 95 # undef isupper 120 using ::isupper _LIBCPP_USING_IF_EXISTS;
|
H A D | ctype.h | 26 int isupper(int c); 54 # undef isupper
|
/freebsd/lib/libc/iconv/ |
H A D | citrus_bcs_strtol.c | 54 #undef isupper 55 #define isupper(c) _bcs_isupper(c) macro
|
H A D | citrus_bcs_strtoul.c | 54 #undef isupper 55 #define isupper(c) _bcs_isupper(c) macro
|
/freebsd/usr.sbin/makefs/cd9660/ |
H A D | cd9660_strings.c | 60 return (isupper((unsigned char)c) in cd9660_is_d_char() 68 return (isupper((unsigned char)c) in cd9660_is_a_char()
|
/freebsd/sys/sys/ |
H A D | ctype.h | 55 isupper(int c) in isupper() function 69 return (isupper(c) || islower(c)); in isalpha()
|
/freebsd/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
|
/freebsd/sys/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
|
/freebsd/sys/contrib/ncsw/inc/ |
H A D | ctype_ext.h | 65 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro 73 if (isupper(c)) in __tolower()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_proxy.h | 137 # ifndef isupper 138 # define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro 144 # define isalpha(x) (isupper(x) || islower(x)) 147 # define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
|
/freebsd/usr.bin/caesar/ |
H A D | caesar.c | 49 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \ 95 else if (isupper(ch)) in main()
|
/freebsd/include/ |
H A D | ctype.h | 57 int isupper(int); 96 #define isupper(c) __sbistype((c), _CTYPE_U) macro
|
/freebsd/lib/libc/locale/ |
H A D | isctype.c | 168 #undef isupper 170 isupper(int c) in isupper() function
|
H A D | Makefile.inc | 36 isupper.3 iswalnum.3 iswalnum_l.3 isxdigit.3 \ 67 MLINKS+=isupper.3 isupper_l.3
|
/freebsd/contrib/sendmail/libsm/ |
H A D | strto.c | 123 c -= isupper(c) ? 'A' - 10 : 'a' - 10; 229 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
|
/freebsd/contrib/pam_modules/pam_passwdqc/ |
H A D | passwdqc_check.c | 78 if (isupper(c)) uppers++; else in is_simple() 94 if (uppers && isascii(c) && isupper(c)) uppers--; in is_simple() 156 if (isascii(c) && isupper(c)) in unify()
|
/freebsd/usr.bin/fortune/strfile/ |
H A D | strfile.c | 186 if (Iflag && isupper((unsigned char)*nsp)) in main() 404 if (isupper(c1)) in cmp_str() 406 if (isupper(c2)) in cmp_str()
|
/freebsd/contrib/flex/src/ |
H A D | ccl.c | 298 return isupper (c) ? tolower (c) : (islower (c) ? toupper (c) : c); in reverse_case() 304 return (isupper (c) || islower (c)) ? true : false; in has_case()
|
/freebsd/contrib/smbfs/lib/smb/ |
H A D | subr.c | 231 ch = (isupper(ch) ? ('A' + (ch - 'A' + 13) % 26) : in smb_simplecrypt() 270 ch = (isupper(ch) ? ('A' + (ch - 'A' + 13) % 26) : in smb_simpledecrypt()
|
/freebsd/contrib/telnet/libtelnet/ |
H A D | genget.c | 41 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
|
/freebsd/crypto/heimdal/appl/telnet/libtelnet/ |
H A D | genget.c | 44 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
|
/freebsd/contrib/sendmail/contrib/ |
H A D | bitdomain.c | 100 if (isupper(*p)) *p = tolower(*p); 116 if (isupper(*p)) *p = tolower(*p);
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cctype.inc | 21 using ::isupper _LIBCPP_USING_IF_EXISTS;
|