Searched refs:pAddend (Results 1 - 9 of 9) sorted by relevance
/frameworks/compile/mclinker/lib/Fragment/ |
H A D | Stub.cpp | 31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) argument 34 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
|
H A D | Relocation.cpp | 48 /// @param pAddend [in] the addend of the relocation entry 49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) argument 51 return g_RelocationFactory->produce(pType, pFragRef, pAddend); 70 Relocation::Address pAddend, 75 m_Addend(pAddend) 136 void Relocation::setAddend(Address pAddend) argument 138 m_Addend = pAddend; 68 Relocation(Relocation::Type pType, FragmentRef* pTargetRef, Relocation::Address pAddend, Relocation::DWord pTargetData) argument
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
H A D | Relocation.h | 45 Address pAddend, 63 /// @param pAddend [in] the addend of the relocation entry 65 Address pAddend = 0); 108 void setAddend(Address pAddend);
|
H A D | Stub.h | 38 Fixup(DWord pOffset, SWord pAddend, Type pType) argument 39 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) 117 void addFixup(DWord pOffset, SWord pAddend, Type pType);
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | RelocationFactory.cpp | 35 Address pAddend) 75 new (result) Relocation(pType, &pFragRef, pAddend, target_data); 33 produce(RelocationFactory::Type pType, FragmentRef& pFragRef, Address pAddend) argument
|
/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | RelocationFactory.h | 45 /// @param pAddend - the addend of the relocation entry 48 Address pAddend = 0);
|
H A D | BranchIsland.h | 110 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) argument 111 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend)
|
/frameworks/compile/mclinker/include/mcld/ |
H A D | IRBuilder.h | 466 /// @param [in] pAddend Tthe addend value for applying relocation 471 Relocation::Address pAddend = 0);
|
/frameworks/compile/mclinker/lib/Core/ |
H A D | IRBuilder.cpp | 674 Relocation::Address pAddend) 687 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend); 670 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument
|
Completed in 103 milliseconds