Searched defs:pRelocation (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp46 RelocData& RelocData::append(Relocation& pRelocation) { argument
47 m_Relocations.push_back(&pRelocation);
51 Relocation& RelocData::remove(Relocation& pRelocation) { argument
52 iterator iter(pRelocation);
H A DRelocationFactory.cpp83 void RelocationFactory::destroy(Relocation* pRelocation) { argument
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp54 void Relocation::Destroy(Relocation*& pRelocation) { argument
55 g_RelocationFactory->destroy(pRelocation);
56 pRelocation = NULL;
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp72 Relocator::Result AArch64Relocator::applyRelocation(Relocation& pRelocation) { argument
73 Relocation::Type type = pRelocation.type();
81 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp369 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) { argument
370 pRD.append(pRelocation);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp176 Relocator::Result HexagonRelocator::applyRelocation(Relocation& pRelocation) { argument
177 Relocation::Type type = pRelocation.type();
184 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp278 Relocator::Result X86_32Relocator::applyRelocation(Relocation& pRelocation) { argument
279 Relocation::Type type = pRelocation.type();
286 return X86_32ApplyFunctions[type].func(pRelocation, *this);
1237 Relocator::Result X86_64Relocator::applyRelocation(Relocation& pRelocation) { argument
1238 Relocation::Type type = pRelocation.type();
1245 return X86_64ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp307 Relocator::Result ARMRelocator::applyRelocation(Relocation& pRelocation) { argument
308 Relocation::Type type = pRelocation.type();
313 return ApplyFunctions[type].func(pRelocation, *this);

Completed in 802 milliseconds