Searched refs:toupper (Results 1 - 25 of 147) sorted by relevance

123456

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Derr.D_PROTO_LEN.toupper.d28 trace(toupper());
H A Derr.D_PROTO_ARG.toupper.d28 trace(toupper(timestamp));
H A Dtst.toupper.d48 /input[i] != NULL && (this->out = toupper(input[i])) != expected[i]/
50 printf("expected toupper(\"%s\") to be \"%s\"; found \"%s\"\n",
58 printf("toupper(\"%s\") is \"%s\", as expected\n",
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dcs_strcmp.c49 while(toupper(*s1) == toupper(*s2++))
52 return(toupper(*s1) - toupper(*--s2));
H A Dcs_strncmp.c51 while(--n >= 0 && toupper(*s1) == toupper(*s2++))
54 return((n < 0)? 0: (toupper(*s1) - toupper(*--s2)));
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dm_ord.h64 ((m_ischarset(c) && ('A' <= toupper(c) && toupper(c) <= 'Z')) ? \
65 (toupper(c) - '@') : -1)
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmkkey.awk72 printf "\t{ %d, %s },\n", strcount, toupper($1);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmkkey.awk73 printf "\t{ %d, %s },\n", strcount, toupper($1);
H A Dmknames.awk91 printf "\t\"%s\",\n", toupper($1) > "strfnam.c"
/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/lib/libtecla/common/
H A Dgetline.h58 #define MAKE_CTRL(c) ((c)=='?' ? '\177' : ((unsigned char)toupper(c) & ~0x40))
70 #define CTRL_TO_CHAR(c) (toupper((unsigned char)(c) | 0x40))
/illumos-gate/usr/src/cmd/mail/
H A Disit.c62 if (toupper(*p) != toupper(*lp)) {
/illumos-gate/usr/src/cmd/localedef/data/
H A Dctype.sh26 toupper tolower; do
/illumos-gate/usr/src/lib/libast/common/tm/
H A Dtmword.c56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t)
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++;
/illumos-gate/usr/src/lib/libresolv2/common/inet/
H A Dnsap_addr.c58 c = toupper(c);
63 c = toupper(c);
/illumos-gate/usr/src/head/
H A Dctype.h55 using std::toupper;
84 #define _toupper(c) (toupper(c))
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h69 * Some header files define their own macros for tolower/toupper which mangle
75 #ifndef toupper
76 extern int toupper(int);
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregsub.c86 c = toupper(c);
96 c = toupper(c);
145 c = toupper(c);
219 c = toupper(c);
229 c = toupper(c);
/illumos-gate/usr/src/head/iso/
H A Dctype_iso.h107 extern int toupper(int);
/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/common/os/
H A Dprivs.awk106 key = toupper($1)
107 priv = toupper($3)
112 priv = toupper($2);
134 $2 = toupper($2)
135 sets[nset] = toupper(substr($2, 6, 1)) tolower(substr($2, 7));
/illumos-gate/usr/src/cmd/acpi/common/
H A Dutnonansi.c124 *String = (char) toupper ((int) *String);
379 ThisDigit = (UINT8) toupper ((int) *String);
596 Index = (UINT8) toupper ((int) *String);
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutnonansi.c124 *String = (char) toupper ((int) *String);
379 ThisDigit = (UINT8) toupper ((int) *String);
596 Index = (UINT8) toupper ((int) *String);
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Dpattern.c44 if (toupper(*s1++) != toupper(*s2++)) {
/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

Completed in 4007 milliseconds

123456