Lines Matching refs:relpp

2168       arelent **  relpp;  in merge_gnu_build_notes()  local
2173 relpp = (arelent **) xmalloc (relsize); in merge_gnu_build_notes()
2174 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, isympp); in merge_gnu_build_notes()
2175 free (relpp); in merge_gnu_build_notes()
4291 arelent **relpp; in copy_relocations_in_section() local
4335 relpp = isection->orelocation; in copy_relocations_in_section()
4339 relpp = bfd_xalloc (obfd, relsize); in copy_relocations_in_section()
4340 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp); in copy_relocations_in_section()
4357 for (w_relpp = relpp, i = 0; i < relcount; i++) in copy_relocations_in_section()
4359 if (relpp[i]->sym_ptr_ptr in copy_relocations_in_section()
4361 && *relpp[i]->sym_ptr_ptr in copy_relocations_in_section()
4362 && is_specified_symbol (bfd_asymbol_name (*relpp[i]->sym_ptr_ptr), in copy_relocations_in_section()
4364 *w_relpp++ = relpp[i]; in copy_relocations_in_section()
4365 relcount = w_relpp - relpp; in copy_relocations_in_section()
4369 bfd_set_reloc (obfd, osection, relcount == 0 ? NULL : relpp, relcount); in copy_relocations_in_section()
4570 arelent **relpp; in mark_symbols_used_in_relocations() local
4589 relpp = (arelent **) xmalloc (relsize); in mark_symbols_used_in_relocations()
4590 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, symbols); in mark_symbols_used_in_relocations()
4599 if (relpp[i]->sym_ptr_ptr != NULL in mark_symbols_used_in_relocations()
4600 && * relpp[i]->sym_ptr_ptr != NULL in mark_symbols_used_in_relocations()
4601 && *relpp[i]->sym_ptr_ptr != bfd_com_section_ptr->symbol in mark_symbols_used_in_relocations()
4602 && *relpp[i]->sym_ptr_ptr != bfd_abs_section_ptr->symbol in mark_symbols_used_in_relocations()
4603 && *relpp[i]->sym_ptr_ptr != bfd_und_section_ptr->symbol) in mark_symbols_used_in_relocations()
4604 (*relpp[i]->sym_ptr_ptr)->flags |= BSF_KEEP; in mark_symbols_used_in_relocations()
4607 free (relpp); in mark_symbols_used_in_relocations()