Searched defs:isupper (Results 1 - 15 of 15) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c74 #undef isupper macro
95 int isupper(c) function
/illumos-gate/usr/src/cmd/mdb/common/libstand/
H A Dctype.c28 isupper(int c) function
57 return ((isupper(c) || islower(c)) ? 1 : 0);
/illumos-gate/usr/src/common/util/
H A Dstrtolctype.h60 #define isalpha(ch) (isupper(ch) || islower(ch))
65 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/illumos-gate/usr/src/lib/libc/port/locale/
H A Disdigit.c68 #undef isupper macro
/illumos-gate/usr/src/uts/common/sys/
H A Dctype.h91 isupper(char c) function
95 #pragma inline(isupper)
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacclib.h71 #define isupper(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_UP)) macro
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h54 #define isupper(c) ((__ctype + 1)[c] & _U) macro
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h54 extern int isupper(/* int c */);
76 #define isupper(c) ((_ctype_ + 1)[c] & _U) macro
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h42 #define isupper(c) ((_ctype_+1)[c]&_U) macro
/illumos-gate/usr/src/boot/include/
H A Dctype.h58 int isupper(int);
97 #define isupper(c) __sbistype((c), _CTYPE_U) macro
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dexternal.c687 isupper(int c) function
715 return ((isupper(c) || islower(c)) ? 1 : 0);
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h70 #ifndef isupper
71 #define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
77 #define isalpha(x) (isupper(x) || islower(x))
83 #define tolower(x) (isupper(x) ? (x) + 'a' - 'A' : (x))
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h201 static __inline int isupper(int c) function
228 return isupper(c) || islower(c);
243 return isupper(c) ? c - 'A' + 'a' : c;
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h128 #ifndef isupper
129 #define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
135 #define isalpha(x) (isupper(x) || islower(x))
138 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
/illumos-gate/usr/src/man/man3c/
H A DMakefile906 isupper.3c \
1607 isupper.3c := LINKSRC = ctype.3c

Completed in 84 milliseconds