Searched refs:nlm_relocs (Results 1 – 4 of 4) sorted by relevance
/toolchain/binutils/binutils-2.25/bfd/ |
D | nlm32-i386.c | 331 struct nlm_relent *nlm_relocs; /* Relocation records for symbol. */ in nlm_i386_read_import() local 354 nlm_relocs = bfd_alloc (abfd, rcount * sizeof (struct nlm_relent)); in nlm_i386_read_import() 355 if (!nlm_relocs) in nlm_i386_read_import() 357 sym -> relocs = nlm_relocs; in nlm_i386_read_import() 363 if (! nlm_i386_read_reloc (abfd, sym, §ion, &nlm_relocs -> reloc)) in nlm_i386_read_import() 365 nlm_relocs -> section = section; in nlm_i386_read_import() 366 nlm_relocs++; in nlm_i386_read_import()
|
D | nlm32-sparc.c | 210 struct nlm_relent *nlm_relocs; /* Relocation records for symbol. */ in nlm_sparc_read_import() local 242 nlm_relocs = bfd_alloc (abfd, rcount * sizeof (struct nlm_relent)); in nlm_sparc_read_import() 243 if (!nlm_relocs) in nlm_sparc_read_import() 245 sym -> relocs = nlm_relocs; in nlm_sparc_read_import() 251 if (! nlm_sparc_read_reloc (abfd, sym, §ion, &nlm_relocs -> reloc)) in nlm_sparc_read_import() 253 nlm_relocs -> section = section; in nlm_sparc_read_import() 254 nlm_relocs++; in nlm_sparc_read_import()
|
D | nlm32-alpha.c | 601 struct nlm_relent *nlm_relocs; /* Relocation records for symbol. */ in nlm_alpha_read_import() local 627 nlm_relocs = bfd_alloc (abfd, amt); in nlm_alpha_read_import() 628 if (!nlm_relocs) in nlm_alpha_read_import() 630 sym -> relocs = nlm_relocs; in nlm_alpha_read_import() 636 if (! nlm_alpha_read_reloc (abfd, sym, §ion, &nlm_relocs -> reloc)) in nlm_alpha_read_import() 638 nlm_relocs -> section = section; in nlm_alpha_read_import() 639 nlm_relocs++; in nlm_alpha_read_import()
|
D | nlm32-ppc.c | 614 struct nlm_relent *nlm_relocs; /* Relocation records for symbol. */ in nlm_powerpc_read_import() local 638 nlm_relocs = bfd_alloc (abfd, rcount * sizeof (struct nlm_relent)); in nlm_powerpc_read_import() 639 if (nlm_relocs == NULL) in nlm_powerpc_read_import() 641 sym -> relocs = nlm_relocs; in nlm_powerpc_read_import() 647 if (! nlm_powerpc_read_reloc (abfd, sym, §ion, &nlm_relocs -> reloc)) in nlm_powerpc_read_import() 649 nlm_relocs -> section = section; in nlm_powerpc_read_import() 650 nlm_relocs++; in nlm_powerpc_read_import()
|