• Home
  • Raw
  • Download

Lines Matching +full:zero +full:- +full:initialised

15 #	Last change 2.6.9-rc1, adding support for separate source and object
70 my $nm = ($ENV{'NM'} || "nm") . " -p";
71 my $objdump = ($ENV{'OBJDUMP'} || "objdump") . " -s -j .comment";
72 my $srctree = File::Spec->curdir();
73 my $objtree = File::Spec->curdir();
74 $srctree = File::Spec->rel2abs($ENV{'srctree'}) if (exists($ENV{'srctree'}));
75 $objtree = File::Spec->rel2abs($ENV{'objtree'}) if (exists($ENV{'objtree'}));
77 if ($#ARGV != -1) {
99 'drivers/ide/ide-probe-mini' => 1,
106 'arch/ia64/kernel/gate-data' => 1,
168 m:/built-in.a$:
172 || m:arch/ia64/kernel/gate-syms.o$:
190 || m:drivers/ide/ide-detect.o$:
191 || m:drivers/ide/pci/idedriver-pci.o$:
209 || m:sound/.*/snd-:
212 || m:/vmlinux-obj.o$:
225 if (! -e $basename) {
234 if (-e "$source.c" || -e "$source.S") {
235 $source = File::Spec->catfile($objtree, $File::Find::dir, $source)
237 $source = File::Spec->catfile($srctree, $File::Find::dir, $source)
239 if (! -e "$source.c" && ! -e "$source.S") {
252 next if (! /^[ 0-9a-f]{5,} /);
273 # D global variable, initialised
274 # G global variable, initialised, small data section
275 # R global array, initialised
280 # V similar to W, but the value of the weak symbol becomes zero with no error.
283 # d static variable, initialised
284 # g static variable, initialised, small data section
285 # r static array, initialised
301 $name =~ s/_R[a-f0-9]{8}$//; # module versions adds this
306 $name !~ /^Version_[0-9]+$/ &&
351 if ($name eq (split(' ', $nmdata->[$i], 2))[1]) {
379 printf "$name is multiply defined in :-\n";
395 my ($type, $name) = split(' ', $nmdata->[$i], 2);
399 $nmdata->[$i] = "$type $name $object";
405 if ($nmdata->[$j] eq $kstrtab ||
406 $nmdata->[$j] eq $ksymtab) {