Lines Matching defs:rent
1880 struct elf64_ia64_dyn_reloc_entry *rent;
1882 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
1883 if (rent->srel == srel && rent->type == type)
1886 if (!rent)
1888 rent = ((struct elf64_ia64_dyn_reloc_entry *)
1889 bfd_alloc (abfd, (bfd_size_type) sizeof (*rent)));
1890 if (!rent)
1893 rent->next = dyn_i->reloc_entries;
1894 rent->srel = srel;
1895 rent->type = type;
1896 rent->count = 0;
1897 dyn_i->reloc_entries = rent;
1899 rent->count++;
2455 struct elf64_ia64_dyn_reloc_entry *rent;
2513 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2515 switch (rent->type)