Lines Matching refs:type
221 my ($source, $type, $name);
265 ($type, $name) = (split(/ +/, $_, 3))[1..2];
288 if ($type !~ /^[ABCDGRSTUWVabdgrstwv?]$/) {
295 $type = 'R' if ($type eq '?'); # binutils replaced ? with R at one point
297 $type = 'R' if ($name =~ /^__ksymtab/ || $name =~ /^__kstrtab/);
299 if ($type =~ /[ABCDGRSTWV]/ &&
322 push(@nmdata, "$type $name");
392 my ($type, $name) = split(' ', $nmdata->[$i], 2);
393 if ($type eq "U" || $type eq "w") {
396 $nmdata->[$i] = "$type $name $object";
432 printf "weak " if ($type eq "w");