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

/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) argument
34 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
H A DRelocation.cpp48 /// @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)
138 void Relocation::setAddend(Address pAddend) argument
140 m_Addend = pAddend;
68 Relocation(Relocation::Type pType, FragmentRef* pTargetRef, Relocation::Address pAddend, Relocation::DWord pTargetData) argument
/frameworks/compile/mclinker/lib/LD/
H A DRelocationFactory.cpp35 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/Fragment/
H A DStub.h35 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
36 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType)
114 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) argument
109 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend)
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp239 Relocation::DWord pAddend)
241 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16);
363 Relocation::DWord pAddend,
369 key.m_Addend = pAddend;
374 Relocation::DWord pAddend)
379 key.m_Addend = pAddend;
238 reserveLocalEntry(ResolveInfo& pInfo, int reloc, Relocation::DWord pAddend) argument
H A DMipsRelocator.cpp135 Relocation::DWord pAddend, Relocation::DWord pSymbol)
138 m_Addend(pAddend),
133 MipsRelocationInfo(Relocation& pParent, Relocation::Type pType, Relocation::DWord pResult, Relocation::DWord pAddend, Relocation::DWord pSymbol) argument
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp601 Relocation::Address pAddend)
605 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend);
597 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument

Completed in 170 milliseconds