Home
last modified time | relevance | path

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

12345678

/freebsd-12.1/contrib/apr/strings/
H A 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.1/contrib/libc++/include/
H A Dcctype30 int isupper(int c);
87 #ifdef isupper
88 #undef isupper
114 using ::isupper;
H A Dctype.h53 #undef isupper
/freebsd-12.1/lib/libc/iconv/
H A Dcitrus_bcs_strtol.c56 #undef isupper
57 #define isupper(c) _bcs_isupper(c) macro
H A Dcitrus_bcs_strtoul.c56 #undef isupper
57 #define isupper(c) _bcs_isupper(c) macro
/freebsd-12.1/usr.sbin/makefs/cd9660/
H A 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.1/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h63 #undef isupper
79 using ::isupper;
/freebsd-12.1/sys/sys/
H A Dctype.h57 isupper(int c) in isupper() function
71 return (isupper(c) || islower(c)); in isalpha()
/freebsd-12.1/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-12.1/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-12.1/sys/contrib/ncsw/inc/
H A Dctype_ext.h65 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro
73 if (isupper(c)) in __tolower()
/freebsd-12.1/sys/contrib/ipfilter/netinet/
H A Dip_proxy.h144 # ifndef isupper
145 # define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
151 # define isalpha(x) (isupper(x) || islower(x))
154 # define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
/freebsd-12.1/contrib/apr-util/crypto/
H A Duuid.c69 if (isupper(*s)) { in parse_hexpair()
82 if (isupper(*s)) { in parse_hexpair()
/freebsd-12.1/usr.bin/caesar/
H A Dcaesar.c63 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \
109 else if (isupper(ch)) in main()
/freebsd-12.1/include/
H A Dctype.h60 int isupper(int);
99 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/freebsd-12.1/lib/libc/locale/
H A Disctype.c174 #undef isupper
176 isupper(int c) in isupper() function
/freebsd-12.1/contrib/sendmail/libsm/
H A Dstrto.c123 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
229 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/freebsd-12.1/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-12.1/usr.bin/fortune/strfile/
H A Dstrfile.c200 if (Iflag && isupper((unsigned char)*nsp)) in main()
408 if (isupper(c1)) in cmp_str()
410 if (isupper(c2)) in cmp_str()
/freebsd-12.1/contrib/flex/
H A 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.1/crypto/openssh/openbsd-compat/
H A Dcharclass.h26 { "upper", isupper },
/freebsd-12.1/contrib/libstdc++/include/c_compatibility/
H A Dctype.h44 using std::isupper;
/freebsd-12.1/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-12.1/stand/libsa/
H A Dstand.h202 static __inline int isupper(int c) in isupper() function
229 return isupper(c) || islower(c); in isalpha()
260 return isupper(c) ? c - 'A' + 'a' : c; in tolower()
/freebsd-12.1/contrib/sendmail/contrib/
H A Dbitdomain.c100 if (isupper(*p)) *p = tolower(*p);
116 if (isupper(*p)) *p = tolower(*p);

12345678