Home
last modified time | relevance | path

Searched refs:addend (Results 1 – 4 of 4) sorted by relevance

/bionic/tools/relocation_packer/src/
Ddelta_encoder.cc129 ElfAddr addend = 0; in Decode() local
147 addend += packed[ndx++]; in Decode()
164 addend += packed[ndx++]; in Decode()
170 reloc.r_addend = is_relocation_group_has_addend(group_flags) ? addend : 0; in Decode()
175 addend = 0; in Decode()
Ddelta_encoder_unittest.cc16 int32_t addend, in AddRelocation() argument
21 relocation.r_addend = addend; in AddRelocation()
28 int32_t addend, in CheckRelocation() argument
32 relocation.r_addend == addend; in CheckRelocation()
Dpacker_unittest.cc16 typename ELF::Sxword addend, in AddRelocation() argument
21 relocation.r_addend = addend; in AddRelocation()
29 typename ELF::Sxword addend, in CheckRelocation() argument
33 relocation.r_addend == addend; in CheckRelocation()
/bionic/linker/
Dlinker.cpp2512 ElfW(Addr) addend = get_addend(rel, reloc); in relocate()
2626 reinterpret_cast<void*>(sym_addr + addend), sym_name); in relocate()
2628 *reinterpret_cast<ElfW(Addr)*>(reloc) = (sym_addr + addend); in relocate()
2635 reinterpret_cast<void*>(sym_addr + addend), sym_name); in relocate()
2636 *reinterpret_cast<ElfW(Addr)*>(reloc) = (sym_addr + addend); in relocate()
2643 reinterpret_cast<void*>(load_bias + addend)); in relocate()
2644 *reinterpret_cast<ElfW(Addr)*>(reloc) = (load_bias + addend); in relocate()
2651 reinterpret_cast<void*>(load_bias + addend)); in relocate()
2665 ElfW(Addr) ifunc_addr = call_ifunc_resolver(load_bias + addend); in relocate()
2685 reloc, sym_addr + addend, sym_name); in relocate()
[all …]