HomeSort by: relevance | last modified time | path
    Searched refs:toupper (Results 1 - 25 of 434) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/awk/
d_toupper.awk 4 print toupper($0);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
strcasecmp.c 48 while(toupper((unsigned char)*s1) == toupper((unsigned char)*s2)) {
54 return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
strncasecmp.c 48 && toupper((unsigned char)*s1) == toupper((unsigned char)*s2))
58 return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
strupr.c 49 *s = toupper((unsigned char)*s);
  /src/external/bsd/openldap/dist/include/ac/
ctype.h 24 #undef TOUPPER
28 # define TOUPPER(c) (islower(c) ? toupper(c) : (c))
31 # define TOUPPER(c) toupper(c)
  /src/sys/arch/hppa/dev/
devlist2h.awk 75 printf("#define\tHPPA_TYPE_%s\t%s\n", toupper($2), $3) > cpuh;
76 types[tolower($2)] = toupper($2);
82 printf("#define\tHPPA_%s_%s\t%s\n", toupper($1),
83 toupper($2), $3) > cpuh;
84 printf("{HPPA_TYPE_%s,\tHPPA_%s_%s,\t\"", toupper($1),
85 toupper($1), toupper($2), $3) > cpud;
  /src/sys/dev/onewire/
devlist2h.awk 40 printf("#define ONEWIRE_FAMILY_%s\t%s\n", toupper($2), $3) > hfile
41 printf("\t{ ONEWIRE_FAMILY_%s, \"", toupper($2)) > dfile
  /src/external/bsd/flex/dist/examples/manual/
user_act.lex 24 yytext[loop] = toupper(yytext[loop]);
  /src/tests/lib/libc/locale/
t_toupper.c 80 reported = toupper((int)(unsigned char)t->lower[i]);
90 ATF_TC(toupper); variable
92 ATF_TC_HEAD(toupper, tc)
95 "Checks toupper under different locales");
98 ATF_TC_BODY(toupper, tc)
127 ATF_TP_ADD_TC(tp, toupper);
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 29 int toupper(int c);
55 #undef toupper macro
  /src/sys/kern/
makesyscalls.sh 132 # Does this awk have a "toupper" function?
133 have_toupper="$($awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null)"
135 # If this awk does not define "toupper" then define our own.
138 toupper=
140 # Provide our own toupper()
141 toupper='
142 function toupper(str) { function
170 $toupper
233 compat_upper[i] = toupper(compat[i])
743 printf(" __RENAME(RUMP_SYS_RENAME_%s)", toupper(realname))> rumpproto
    [all...]
vnode_if.sh 62 # Does this awk have a "toupper" function? (i.e. is it GNU awk)
63 isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null`
65 # If this awk does not define "toupper" then define our own.
68 toupper=
70 # Provide our own toupper()
71 toupper='
72 function toupper(str) { function
261 # This awk program needs toupper() so define it if necessary.
262 sed -e "$sed_prep" $src | $awk -v rump=${rump} "$toupper"'
268 toupper(name), vop_offset++)
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 47 using std::toupper;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 47 using std::toupper;
  /src/sys/dev/acpi/
devlist2h.awk 58 products[nproducts, 1] = toupper($1);
  /src/sys/dev/hil/
devlist2h.awk 53 $2, $3, toupper($1))
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 30 int toupper(int);
66 /* expect+1: warning: argument to 'toupper' must be 'unsigned char' or EOF, not 'char' [341] */
67 toupper(c);
  /src/external/bsd/libbind/dist/inet/
nsap_addr.c 60 c = toupper(c);
65 c = toupper(c);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/aix/
ctype_configure_char.cc 70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/darwin/
ctype_configure_char.cc 70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/
ctype_configure_char.cc 70 { return ::toupper((int)(unsigned char) __c); }
77 *__low = ::toupper((int)(unsigned char) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/openbsd/
ctype_configure_char.cc 70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
ctype_configure_char.cc 70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/hpux/
ctype_configure_char.cc 70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/qnx/qnx6.1/
ctype_configure_char.cc 68 { return ::toupper((int) __c); }
75 *__low = ::toupper((int) *__low);

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>