Lines Matching refs:type
224 my ($source, $type, $name);
268 ($type, $name) = (split(/ +/, $_, 3))[1..2];
291 if ($type !~ /^[ABCDGRSTUWVabdgrstwv?]$/) {
298 $type = 'R' if ($type eq '?'); # binutils replaced ? with R at one point
300 $type = 'R' if ($name =~ /^__ksymtab/ || $name =~ /^__kstrtab/);
302 if ($type =~ /[ABCDGRSTWV]/ &&
325 push(@nmdata, "$type $name");
395 my ($type, $name) = split(' ', $nmdata->[$i], 2);
396 if ($type eq "U" || $type eq "w") {
399 $nmdata->[$i] = "$type $name $object";
435 printf "weak " if ($type eq "w");