Searched refs:isupper (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-13-stable/lib/libc/iconv/
H A Dcitrus_bcs_strtol.c56 #undef isupper macro
57 #define isupper(c) _bcs_isupper(c) macro
H A Dcitrus_bcs_strtoul.c56 #undef isupper macro
57 #define isupper(c) _bcs_isupper(c) macro
H A D_strtoul.h100 i = c - (isupper(c) ? 'A' - 10 : 'a' - 10);
H A Dcitrus_bcs.h57 _CITRUS_BCS_PRED(isupper, c >= 'A' && c <= 'Z')
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dcharclass.h26 { "upper", isupper },
/freebsd-13-stable/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-13-stable/sys/sys/
H A Dctype.h57 isupper(int c) function
71 return (isupper(c) || islower(c));
/freebsd-13-stable/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-13-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c62 return (isupper((unsigned char)c)
70 return (isupper((unsigned char)c)
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dctype.h26 int isupper(int c);
52 #undef isupper macro
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Dctype_ext.h65 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro
73 if (isupper(c))
/freebsd-13-stable/contrib/apr/strings/
H A Dapr_fnmatch.c138 else if (nocase && (isupper(**string) || isupper(*startch)
139 || isupper(**pattern))
151 else if (nocase && (isupper(**string) || isupper(**pattern))
178 else if (nocase && (isupper(**string) || isupper(**pattern))
/freebsd-13-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c44 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/freebsd-13-stable/contrib/telnet/libtelnet/
H A Dgenget.c45 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/freebsd-13-stable/lib/libc/locale/
H A Disctype.c174 #undef isupper macro
176 isupper(int c) function
/freebsd-13-stable/contrib/apr-util/crypto/
H A Duuid.c69 if (isupper(*s)) {
82 if (isupper(*s)) {
/freebsd-13-stable/usr.bin/caesar/
H A Dcaesar.c63 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \
109 else if (isupper(ch))
/freebsd-13-stable/include/
H A Dctype.h60 int isupper(int);
99 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/freebsd-13-stable/contrib/apr/include/
H A Dapr_lib.h226 /** @see isupper */
227 #define apr_isupper(c) (isupper(((unsigned char)(c))))
/freebsd-13-stable/contrib/nvi/common/
H A Dcut.h68 L__name = isupper(nch) ? tolower(nch) : (nch); \
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dstrtoul.c108 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/freebsd-13-stable/sys/libkern/
H A Dstrtol.c108 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
H A Dstrtoq.c112 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
H A Dstrtoul.c87 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
H A Dstrtouq.c89 c -= isupper(c) ? 'A' - 10 : 'a' - 10;

Completed in 274 milliseconds

1234567