Home
last modified time | relevance | path

Searched refs:toupper (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/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.h62 ((m_ischarset(c) && ('A' <= toupper(c) && toupper(c) <= 'Z')) ? \
63 (toupper(c) - '@') : -1)
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dtolower.c23 #pragma weak _toupper = toupper
44 #undef toupper
46 toupper(int c) in toupper() function
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregsub.c86 c = toupper(c); in subold()
96 c = toupper(c); in subold()
145 c = toupper(c); in subold()
219 c = toupper(c); in subold()
229 c = toupper(c); in subold()
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c43 int32_t toupper; member
245 ctn->toupper = wc; in add_caseconv()
374 if (ctn->toupper) in dump_ctype()
375 rl.mapupper[wc] = ctn->toupper; in dump_ctype()
411 if (ctn->toupper == 0) { in dump_ctype()
414 (last_up->toupper + 1 == ctn->toupper)) { in dump_ctype()
425 up[rl.mapupper_ext_nranges - 1].map = ctn->toupper; in dump_ctype()
/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/lib/libtecla/common/
H A Dgetline.h56 #define MAKE_CTRL(c) ((c)=='?' ? '\177' : ((unsigned char)toupper(c) & ~0x40))
68 #define CTRL_TO_CHAR(c) (toupper((unsigned char)(c) | 0x40))
/illumos-gate/usr/src/cmd/mail/
H A Disit.c58 if (toupper(*p) != toupper(*lp)) { in isit()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/tm/
H A Dtmword.c56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t) in tmword()
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++; in tmword()
/illumos-gate/usr/src/uts/common/io/cardbus/
H A Dcardbus_parse.h77 #undef toupper
85 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C)) macro
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetvalues.c232 (*langp)[i] = toupper( target[ind+i] ); in parse_subtypes()
304 (toupper(targetLang[i]) == toupper(lang[i])) ) in check_lang_match()
321 while( target[i] && attr[i] && (toupper(target[i]) == toupper(attr[i])) ) in check_base_match()
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h75 #ifndef toupper
76 extern int toupper(int);
/illumos-gate/usr/src/lib/libresolv2/common/inet/
H A Dnsap_addr.c58 c = toupper(c); in inet_nsap_addr()
63 c = toupper(c); in inet_nsap_addr()
/illumos-gate/usr/src/head/
H A Dctype.h55 using std::toupper;
84 #define _toupper(c) (toupper(c))
/illumos-gate/usr/src/boot/include/
H A Dctype.h61 int toupper(int);
100 #define toupper(c) __sbtoupper(c) macro
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Dpattern.c42 if (toupper(*s1++) != toupper(*s2++)) { in substr()
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dnls.c70 nls_upper[i] = toupper(i); in nls_setlocale()
164 *dst++ = toupper(*src++); in nls_str_upper()
/illumos-gate/usr/src/lib/libnsl/dial/
H A Dstoa.c47 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
49 #define toxdigit(c) ((isdigit(c))?todigit(c):(toupper(c)-(int)'A'+10))
/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/lib/libeti/form/common/
H A Dty_enum.c135 while (toupper (*x++) == toupper (*v)) in cmp()
/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));
/illumos-gate/usr/src/test/util-tests/tests/awk/syn/
H A Dparseme.awk1 BEGIN { toupper(substr*line,1,12)) }
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmkkey.awk69 printf "\t{ %d, %s },\n", strcount, toupper($1);

12345678910>>...16