Home | History | Annotate | Download | only in bfd

Lines Matching defs:rent

1881   struct elf64_ia64_dyn_reloc_entry *rent;
1883 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
1884 if (rent->srel == srel && rent->type == type)
1887 if (!rent)
1889 rent = ((struct elf64_ia64_dyn_reloc_entry *)
1890 bfd_alloc (abfd, (bfd_size_type) sizeof (*rent)));
1891 if (!rent)
1894 rent->next = dyn_i->reloc_entries;
1895 rent->srel = srel;
1896 rent->type = type;
1897 rent->count = 0;
1898 dyn_i->reloc_entries = rent;
1900 rent->count++;
2456 struct elf64_ia64_dyn_reloc_entry *rent;
2514 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2516 switch (rent->type)