Lines Matching defs:rent
1958 struct alpha_elf_reloc_entry *rent;
1960 for (rent = h->reloc_entries; rent; rent = rent->next)
1961 if (rent->rtype == r_type && rent->srel == sreloc)
1964 if (!rent)
1967 rent = (struct alpha_elf_reloc_entry *) bfd_alloc (abfd, amt);
1968 if (!rent)
1971 rent->srel = sreloc;
1972 rent->sec = sec;
1973 rent->rtype = r_type;
1974 rent->count = 1;
1976 rent->next = h->reloc_entries;
1977 h->reloc_entries = rent;
1980 rent->count++;