Lines Matching refs:pov
4178 fill_first_plt_entry(unsigned char* pov, in fill_first_plt_entry() argument
4181 { this->do_fill_first_plt_entry(pov, got_address, plt_address); } in fill_first_plt_entry()
4185 fill_plt_entry(unsigned char* pov, in fill_plt_entry() argument
4191 this->do_fill_plt_entry(pov, got_address, plt_address, in fill_plt_entry()
4197 fill_tlsdesc_entry(unsigned char* pov, in fill_tlsdesc_entry() argument
4204 this->do_fill_tlsdesc_entry(pov, gotplt_address, plt_address, got_base, in fill_tlsdesc_entry()
4218 do_fill_first_plt_entry(unsigned char* pov,
4223 do_fill_plt_entry(unsigned char* pov,
4230 do_fill_tlsdesc_entry(unsigned char* pov,
4545 do_fill_first_plt_entry(unsigned char* pov,
4550 do_fill_plt_entry(unsigned char* pov,
4557 do_fill_tlsdesc_entry(unsigned char* pov,
4696 unsigned char* pov, in do_fill_first_plt_entry() argument
4710 memcpy(pov, this->first_plt_entry, this->first_plt_entry_size); in do_fill_first_plt_entry()
4716 AArch64_relocate_functions<size, big_endian>::adrp(pov + 4, in do_fill_first_plt_entry()
4721 pov + 8, in do_fill_first_plt_entry()
4727 pov + 12, in do_fill_first_plt_entry()
4739 unsigned char* pov, in do_fill_plt_entry() argument
4745 memcpy(pov, this->plt_entry, this->plt_entry_size); in do_fill_plt_entry()
4752 pov, in do_fill_plt_entry()
4758 pov + 4, in do_fill_plt_entry()
4764 pov + 8, in do_fill_plt_entry()
4834 unsigned char* pov, in do_fill_tlsdesc_entry() argument
4841 memcpy(pov, tlsdesc_plt_entry, plt_tlsdesc_entry_size); in do_fill_tlsdesc_entry()
4850 pov + 4, in do_fill_tlsdesc_entry()
4856 pov + 8, in do_fill_tlsdesc_entry()
4862 pov + 12, in do_fill_tlsdesc_entry()
4868 pov + 16, in do_fill_tlsdesc_entry()
4895 unsigned char* pov = oview; in do_write() local
4903 this->fill_first_plt_entry(pov, gotplt_address, plt_address); in do_write()
4904 pov += this->first_plt_entry_offset(); in do_write()
4917 pov += this->get_plt_entry_size(), in do_write()
4923 this->fill_plt_entry(pov, gotplt_address, plt_address, in do_write()
4937 this->fill_tlsdesc_entry(pov, gotplt_address, plt_address, got_base, in do_write()
4939 pov += this->get_plt_tlsdesc_entry_size(); in do_write()
4942 gold_assert(static_cast<section_size_type>(pov - oview) == oview_size); in do_write()