Home | History | Annotate | Download | only in kern

Lines Matching refs:toupper

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) {
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++);
282 protoarg = sprintf("int %s(", toupper(name));
683 printf ("\t%s_DESCOFFSET,\n", toupper(name));
716 printf("\terror = %s(", toupper(name));
789 extname = "RUMP_" toupper(name);
791 extname = toupper(name);