Searched defs:toupper (Results 1 - 16 of 16) sorted by relevance

/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.c41 toupper(int c) function
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dtolower.c23 #pragma weak _toupper = toupper
44 #undef toupper macro
46 toupper(int c) function
/illumos-gate/usr/src/cmd/bnu/
H A Dstoa.c42 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
44 #define toxdigit(c) ((isdigit(c))?todigit(c):(toupper(c)-(int)'A'+10))
/illumos-gate/usr/src/boot/include/
H A Dctype.h61 int toupper(int);
100 #define toupper(c) __sbtoupper(c) macro
106 * tolower() and toupper() respectively, minus extra checking to ensure that
109 * toupper() since this doesn't violate the specification itself, only its
/illumos-gate/usr/src/uts/intel/sys/acpi/platform/
H A Dacsolaris.h91 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
/illumos-gate/usr/src/lib/libnsl/dial/
H A Dstoa.c49 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
51 #define toxdigit(c) ((isdigit(c))?todigit(c):(toupper(c)-(int)'A'+10))
/illumos-gate/usr/src/uts/common/io/cardbus/
H A Dcardbus_parse.h79 #undef toupper macro
87 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C)) macro
/illumos-gate/usr/src/cmd/listen/
H A Dnstoa.c64 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
66 #define toxdigit(c) ((isdigit(c))?todigit(c):(toupper(c)-(int)'A'+10))
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c43 int32_t toupper; member in struct:ctype_node
245 ctn->toupper = wc;
373 if (ctn->toupper)
374 rl.mapupper[wc] = ctn->toupper;
406 if (ctn->toupper == 0) {
409 (last_up->toupper + 1 == ctn->toupper)) {
418 up[rl.mapupper_ext_nranges - 1].map = ctn->toupper;
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutclib.c84 * FUNCTION: toupper
656 index = (UINT32) toupper (*String);
728 * FUNCTION: toupper
739 toupper ( function
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h79 #ifndef toupper
80 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dpc_dir.h288 #define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A' : (C)) macro
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dosdep.h39 #define toupper(x) (((x) >= 'a' && (x) <= 'z') ? (x) - 'a' + 'A' : (x)) macro
/illumos-gate/usr/src/uts/common/sys/usb/clients/usbecm/
H A Dusbecm.h268 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? ((C) - 'a' + 'A'): (C)) macro
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h236 static __inline int toupper(int c) function
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h137 #ifndef toupper
138 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A') macro

Completed in 136 milliseconds