Home | History | Annotate | Download | only in bfd

Lines Matching defs:rent

1963 	      struct alpha_elf_reloc_entry *rent;
1965 for (rent = h->reloc_entries; rent; rent = rent->next)
1966 if (rent->rtype == r_type && rent->srel == sreloc)
1969 if (!rent)
1972 rent = (struct alpha_elf_reloc_entry *) bfd_alloc (abfd, amt);
1973 if (!rent)
1976 rent->srel = sreloc;
1977 rent->sec = sec;
1978 rent->rtype = r_type;
1979 rent->count = 1;
1981 rent->next = h->reloc_entries;
1982 h->reloc_entries = rent;
1985 rent->count++;