Home
last modified time | relevance | path

Searched refs:pAddend (Results 1 – 16 of 16) sorted by relevance

/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp49 Address pAddend) { in Create() argument
50 return g_RelocationFactory->produce(pType, pFragRef, pAddend); in Create()
68 Relocation::Address pAddend, in Relocation() argument
73 m_Addend(pAddend) { in Relocation()
130 void Relocation::setAddend(Address pAddend) { in setAddend() argument
131 m_Addend = pAddend; in setAddend()
DStub.cpp75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { in addFixup() argument
77 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType)); in addFixup()
/frameworks/compile/mclinker/include/mcld/Fragment/
DRelocation.h42 Address pAddend,
63 Address pAddend = 0);
104 void setAddend(Address pAddend);
DStub.h36 Fixup(DWord pOffset, SWord pAddend, Type pType) in Fixup() argument
37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {} in Fixup()
129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/lib/LD/
DRelocationFactory.cpp35 Address pAddend) { in produce() argument
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data); in produce()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.h180 int32_t& pAddend) const;
193 int64_t& pAddend) const;
206 int32_t pAddend) const;
219 int64_t pAddend) const;
DMipsGOT.h51 Relocation::DWord pAddend);
77 Relocation::DWord pAddend,
80 Relocation::DWord pAddend);
DMipsGOT.cpp241 Relocation::DWord pAddend) { in reserveLocalEntry() argument
242 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16); in reserveLocalEntry()
449 Relocation::DWord pAddend, in recordLocalEntry() argument
454 key.m_Addend = pAddend; in recordLocalEntry()
459 Relocation::DWord pAddend) { in lookupLocalEntry() argument
463 key.m_Addend = pAddend; in lookupLocalEntry()
DMipsLDBackend.cpp909 int32_t& pAddend) const { in readRelocation()
910 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in readRelocation()
939 int64_t& pAddend) const { in readRelocation()
944 pAddend = pRel.r_addend; in readRelocation()
948 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation()
967 int32_t pAddend) const { in emitRelocation()
968 GNULDBackend::emitRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in emitRelocation()
987 int64_t pAddend) const { in emitRelocation()
994 pRel.r_addend = pAddend; in emitRelocation()
DMipsRelocator.cpp82 Relocation::DWord pResult, Relocation::DWord pAddend) in MipsRelocationInfo() argument
85 m_Addend(pAddend), in MipsRelocationInfo()
/frameworks/compile/mclinker/include/mcld/Target/
DGNULDBackend.h210 int32_t& pAddend) const;
223 int64_t& pAddend) const;
236 int32_t pAddend) const;
249 int64_t pAddend) const;
/frameworks/compile/mclinker/include/mcld/LD/
DBranchIsland.h108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) in Key() argument
109 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend) {} in Key()
DRelocationFactory.h43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp1640 int32_t& pAddend) const { in readRelocation()
1645 pAddend = pRel.r_addend; in readRelocation()
1649 pAddend = mcld::bswap32(pRel.r_addend); in readRelocation()
1681 int64_t& pAddend) const { in readRelocation()
1686 pAddend = pRel.r_addend; in readRelocation()
1690 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation()
1712 int32_t pAddend) const { in emitRelocation()
1714 pRel.r_addend = pAddend; in emitRelocation()
1732 int64_t pAddend) const { in emitRelocation()
1734 pRel.r_addend = pAddend; in emitRelocation()
/frameworks/compile/mclinker/include/mcld/
DIRBuilder.h455 Relocation::Address pAddend = 0);
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp593 Relocation::Address pAddend) { in AddRelocation() argument
596 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend); in AddRelocation()