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

12

/barrelfish-master/lib/libc/iconv/
H A Dcitrus_bcs_strtol.c54 #undef isupper macro
55 #define isupper(c) _bcs_isupper(c) macro
H A Dcitrus_bcs_strtoul.c54 #undef isupper macro
55 #define isupper(c) _bcs_isupper(c) macro
H A D_strtoul.h98 i = c - (isupper(c) ? 'A' - 10 : 'a' - 10);
H A Dcitrus_bcs.h55 _CITRUS_BCS_PRED(isupper, c >= 'A' && c <= 'Z')
H A D_strtol.h124 i = c - (isupper(c) ? 'A' - 10 : 'a' - 10);
/barrelfish-master/include/sys/
H A Dctype.h44 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
46 #define isalpha(c) (isupper(c) || islower(c))
/barrelfish-master/include/cxx/
H A Dctype.h26 int isupper(int c);
52 #undef isupper macro
/barrelfish-master/lib/libc/locale/
H A Disctype.c172 #undef isupper macro
174 isupper(int c) function
H A DMakefile.inc39 isupper.3 iswalnum.3 iswalnum_l.3 isxdigit.3 \
/barrelfish-master/include/
H A Dctype.h58 int isupper(int);
97 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/barrelfish-master/lib/acpica/source/include/
H A Dacclib.h143 #define isupper(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_UP)) macro
/barrelfish-master/lib/libc/net/
H A Dnslexer.l87 if (isupper((unsigned char)p[i]))
/barrelfish-master/lib/pcre/
H A Dpcre_maketables.c117 if (isupper(i)) p[cbit_upper + i/8] |= 1 << (i&7);
/barrelfish-master/lib/libc/nameser/
H A Dns_ttl.c91 if (isascii(ch) && isupper(ch))
H A Dns_name.c389 if (isascii(c) && isupper(c))
/barrelfish-master/lib/acpica/source/components/utilities/
H A Dutclib.c729 if (isupper (index))
836 return (isupper(c) ? ((c)+0x20) : (c));
H A Dutnonansi.c669 if (isupper ((int) Index))
/barrelfish-master/lib/acpica/source/compiler/
H A Daslanalyze.c282 if (!isupper ((int) Op->Asl.Value.String[i]))
298 if (!isupper ((int) Op->Asl.Value.String[i]) &&
H A Daslopcodes.c675 if (!isupper ((int) InString[i]))
/barrelfish-master/include/cxx/support/xlocale/
H A D__posix_l_fallback.h63 return ::isupper(c);
/barrelfish-master/lib/vis/
H A Dunvis.c411 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
419 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dt_x509.c463 (isupper(s[1]) && (
465 (isupper(s[2]) &&
H A Dasn_mime.c805 if(isupper(c)) {
815 if(isupper(c)) {
839 if(isupper(c)) {
/barrelfish-master/lib/libc/inet/
H A Dinet_net_pton.c80 if (isupper(ch))
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c416 if(isupper(ch)) ch = tolower(ch);
417 if(isupper(cl)) cl = tolower(cl);

Completed in 146 milliseconds

12