Home
last modified time | relevance | path

Searched refs:isupper (Results 1 – 25 of 165) sorted by relevance

1234567

/freebsd/crypto/openssh/openbsd-compat/
H A Dfnmatch.c228 (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 Dcharclass.h26 { "upper", isupper },
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcctype29 int isupper(int c);
95 #ifdef isupper
96 # undef isupper
121 using ::isupper _LIBCPP_USING_IF_EXISTS;
H A Dctype.h54 # undef isupper
/freebsd/lib/libc/iconv/
H A Dcitrus_bcs_strtol.c54 #undef isupper
55 #define isupper(c) _bcs_isupper(c) macro
H A Dcitrus_bcs_strtoul.c54 #undef isupper
55 #define isupper(c) _bcs_isupper(c) macro
/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c60 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 Dctype.h55 isupper(int c) in isupper() function
69 return (isupper(c) || islower(c)); in isalpha()
/freebsd/cddl/contrib/opensolaris/common/util/
H A Dstrtolctype.h50 #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 Dstrtolctype.h50 #define isalpha(ch) (isupper(ch) || islower(ch))
55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp107 if (check(i, isupper) && check(i + 1, isupper) && check(i + 2, islower)) in convertToSnakeFromCamelCase()
109 if ((check(i, islower) || check(i, isdigit)) && check(i + 1, isupper)) in convertToSnakeFromCamelCase()
/freebsd/sys/contrib/ncsw/inc/
H A Dctype_ext.h65 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro
73 if (isupper(c)) in __tolower()
/freebsd/usr.bin/caesar/
H A Dcaesar.c49 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \
95 else if (isupper(ch)) in main()
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_proxy.h137 # 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/include/
H A Dctype.h57 int isupper(int);
96 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/freebsd/lib/libc/locale/
H A Disctype.c168 #undef isupper
170 isupper(int c) in isupper() function
/freebsd/contrib/sendmail/libsm/
H A Dstrto.c123 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
229 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/freebsd/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c78 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 Dstrfile.c186 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 Dccl.c298 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/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc21 using ::isupper;
/freebsd/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c44 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/freebsd/contrib/telnet/libtelnet/
H A Dgenget.c41 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/freebsd/contrib/smbfs/lib/smb/
H A Dsubr.c231 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/nvi/common/
H A Dcut.h68 L__name = isupper(nch) ? tolower(nch) : (nch); \

1234567