Home
last modified time | relevance | path

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

12345678

/freebsd-12-stable/contrib/apr/strings/
Dapr_fnmatch.c138 else if (nocase && (isupper(**string) || isupper(*startch) in fnmatch_ch()
139 || isupper(**pattern)) in fnmatch_ch()
151 else if (nocase && (isupper(**string) || isupper(**pattern)) in fnmatch_ch()
178 else if (nocase && (isupper(**string) || isupper(**pattern)) in fnmatch_ch()
/freebsd-12-stable/crypto/openssh/openbsd-compat/
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()
Dcharclass.h26 { "upper", isupper },
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dcctype29 int isupper(int c);
86 #ifdef isupper
87 #undef isupper
113 using ::isupper _LIBCPP_USING_IF_EXISTS;
Dctype.h52 #undef isupper
/freebsd-12-stable/lib/libc/iconv/
Dcitrus_bcs_strtol.c56 #undef isupper
57 #define isupper(c) _bcs_isupper(c) macro
Dcitrus_bcs_strtoul.c56 #undef isupper
57 #define isupper(c) _bcs_isupper(c) macro
/freebsd-12-stable/usr.sbin/makefs/cd9660/
Dcd9660_strings.c62 return (isupper((unsigned char)c) in cd9660_is_d_char()
70 return (isupper((unsigned char)c) in cd9660_is_a_char()
/freebsd-12-stable/contrib/libstdc++/include/c_std/
Dstd_cctype.h63 #undef isupper
79 using ::isupper;
/freebsd-12-stable/sys/sys/
Dctype.h57 isupper(int c) in isupper() function
71 return (isupper(c) || islower(c)); in isalpha()
/freebsd-12-stable/cddl/contrib/opensolaris/common/util/
Dstrtolctype.h50 #define isalpha(ch) (isupper(ch) || islower(ch))
55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/freebsd-12-stable/sys/cddl/contrib/opensolaris/common/util/
Dstrtolctype.h50 #define isalpha(ch) (isupper(ch) || islower(ch))
55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/freebsd-12-stable/sys/contrib/ncsw/inc/
Dctype_ext.h65 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro
73 if (isupper(c)) in __tolower()
/freebsd-12-stable/sys/netpfil/ipfilter/netinet/
Dip_proxy.h140 # ifndef isupper
141 # define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
147 # define isalpha(x) (isupper(x) || islower(x))
150 # define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
/freebsd-12-stable/contrib/apr-util/crypto/
Duuid.c69 if (isupper(*s)) { in parse_hexpair()
82 if (isupper(*s)) { in parse_hexpair()
/freebsd-12-stable/usr.bin/caesar/
Dcaesar.c63 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \
109 else if (isupper(ch)) in main()
/freebsd-12-stable/include/
Dctype.h60 int isupper(int);
99 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/freebsd-12-stable/lib/libc/locale/
Disctype.c174 #undef isupper
176 isupper(int c) in isupper() function
/freebsd-12-stable/contrib/sendmail/libsm/
Dstrto.c123 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
229 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/freebsd-12-stable/contrib/pam_modules/pam_passwdqc/
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-12-stable/usr.bin/fortune/strfile/
Dstrfile.c200 if (Iflag && isupper((unsigned char)*nsp)) in main()
418 if (isupper(c1)) in cmp_str()
420 if (isupper(c2)) in cmp_str()
/freebsd-12-stable/contrib/flex/
Dccl.c303 return isupper (c) ? tolower (c) : (islower (c) ? toupper (c) : c); in reverse_case()
309 return (isupper (c) || islower (c)) ? true : false; in has_case()
/freebsd-12-stable/contrib/libstdc++/include/c_compatibility/
Dctype.h44 using std::isupper;
/freebsd-12-stable/contrib/smbfs/lib/smb/
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-12-stable/stand/libsa/
Dstand.h203 static __inline int isupper(int c) in isupper() function
230 return isupper(c) || islower(c); in isalpha()
261 return isupper(c) ? c - 'A' + 'a' : c; in tolower()

12345678