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

1 2 3 4 5

  /src/tests/usr.bin/awk/
d_toupper.awk 4 print toupper($0);
  /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/tests/lib/libc/locale/
t_toupper.c 80 reported = toupper((int)(unsigned char)t->lower[i]);
90 ATF_TC(toupper);
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/sys/kern/
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...]
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])
742 printf(" __RENAME(RUMP_SYS_RENAME_%s)", toupper(realname))> rumpproto
    [all...]
gendevcalls.awk 88 call_name_ub_uc = toupper(call_name_ub)
122 subsystem_ub_uc = toupper(subsystem_ub)
  /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/games/gomoku/
stoc.c 76 int letter = toupper((unsigned char)mp[0]);
  /src/lib/libc/regex/
utils.h 56 #define towupper(a) toupper(a)
  /src/lib/libc/inet/
nsap_addr.c 75 c = toupper(c);
80 c = toupper(c);
  /src/sbin/nvmectl/
perftest.c 151 if (p == NULL || *p == '\0' || toupper(*p) == 'B') {
153 } else if (toupper(*p) == 'K') {
155 } else if (toupper(*p) == 'M') {
  /src/sys/arch/atari/stand/ahdilabel/
ahdilabel.c 85 if (toupper(getchar()) == 'Y') {
95 if (toupper(getchar()) == 'Y') {
123 key = toupper(getchar());
186 if (toupper (getchar ()) == 'N')
190 if (toupper (getchar ()) == 'Y')
197 if (toupper (getchar ()) == 'N')
201 if (toupper (getchar ()) == 'Y')
334 i = (int) (toupper ((unsigned char)(buf[1]) - 'A'));
  /src/games/battlestar/
getcom.c 102 toupper((unsigned char)*buf1++);
  /src/include/
ctype.h 58 int toupper(int);
  /src/sys/arch/luna68k/dev/xplx/
mkdefs.awk 36 c = toupper(substr(s, i, 1))
  /src/sys/sys/
ctype_inline.h 60 #define toupper(c) ((int)((_toupper_tab_ + 1)[(c)])) macro
  /src/sys/arch/hpcmips/stand/libsa/
winblk.c 61 #define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c)) macro
144 toupper(devname[0]),
145 toupper(devname[1]),
146 toupper(devname[2]),
  /src/tests/usr.bin/cc/
t_ctype_abuse.sh 100 toupper \
  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 231 *String = (char) toupper ((int) *String);
  /src/usr.sbin/gspa/gspa/
gsp_lex.c 134 c = toupper(c);
182 *p = toupper(c);
  /src/games/pig/
pig.c 126 buf[start] = toupper((unsigned char)buf[start]);
  /src/games/sail/
main.c 103 myname[0] = toupper((unsigned char)myname[0]);

Completed in 26 milliseconds

1 2 3 4 5