HomeSort by relevance Sort by last modified time
    Searched refs:pSection (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /frameworks/compile/mclinker/lib/LD/
RelocData.cpp 27 RelocData::RelocData(LDSection &pSection)
28 : m_pSection(&pSection) {
31 RelocData* RelocData::Create(LDSection& pSection)
34 new (result) RelocData(pSection);
38 void RelocData::Destroy(RelocData*& pSection)
40 pSection->~RelocData();
41 g_RelocDataFactory->deallocate(pSection);
42 pSection = NULL;
SectionData.cpp 29 SectionData::SectionData(LDSection &pSection)
30 : m_pSection(&pSection) {
33 SectionData* SectionData::Create(LDSection& pSection)
36 new (result) SectionData(pSection);
40 void SectionData::Destroy(SectionData*& pSection)
42 pSection->~SectionData();
43 g_SectDataFactory->deallocate(pSection);
44 pSection = NULL;
ELFSegment.cpp 76 LDSection* pSection)
78 return m_SectionList.insert(pPos, pSection);
81 void ELFSegment::append(LDSection* pSection)
83 assert(NULL != pSection);
84 if (pSection->align() > m_MaxSectionAlign)
85 m_MaxSectionAlign = pSection->align();
86 m_SectionList.push_back(pSection);
ELFSegmentFactory.cpp 49 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection)
56 if (*sect == pSection)
65 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) const
72 if (*sect == pSection)
LDSection.cpp 80 void LDSection::Destroy(LDSection*& pSection)
82 g_SectFactory->destroy(pSection);
83 g_SectFactory->deallocate(pSection);
84 pSection = NULL;
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.cpp 21 X86_32GOT::X86_32GOT(LDSection& pSection)
22 : GOT(pSection)
38 X86_64GOT::X86_64GOT(LDSection& pSection)
39 : GOT(pSection)
X86GOTPLT.h 29 X86_32GOTPLT(LDSection &pSection);
47 X86_64GOTPLT(LDSection &pSection);
X86GOT.h 37 X86_32GOT(LDSection& pSection);
62 X86_64GOT(LDSection& pSection);
X86Relocator.h 87 LDSection& pSection,
106 LDSection& pSection) = 0;
111 LDSection& pSection) = 0;
162 LDSection& pSection);
167 LDSection& pSection);
171 void convertTLSIEtoLE(Relocation& pReloc, LDSection& pSection);
222 LDSection& pSection);
227 LDSection& pSection);
X86GOTPLT.cpp 23 X86_32GOTPLT::X86_32GOTPLT(LDSection& pSection)
24 : X86_32GOT(pSection)
63 X86_64GOTPLT::X86_64GOTPLT(LDSection& pSection)
64 : X86_64GOT(pSection)
  /frameworks/compile/mclinker/lib/Target/
PLT.cpp 20 PLT::PLT(LDSection& pSection)
21 :m_Section(pSection)
23 m_pSectionData = IRBuilder::CreateSectionData(pSection);
GOT.cpp 24 GOT::GOT(LDSection& pSection)
25 : m_Section(pSection) {
26 m_SectionData = IRBuilder::CreateSectionData(pSection);
OutputRelocSection.cpp 24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection)
29 assert(!pSection.hasRelocData() && "Given section is not a relocation section");
30 m_pRelocData = IRBuilder::CreateRelocData(pSection);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 21 HexagonGOT::HexagonGOT(LDSection& pSection)
22 : GOT(pSection)
HexagonGOTPLT.cpp 23 HexagonGOTPLT::HexagonGOTPLT(LDSection& pSection)
24 : HexagonGOT(pSection)
30 pSection.setAlign(8);
HexagonGOT.h 37 HexagonGOT(LDSection& pSection);
HexagonGOTPLT.h 29 HexagonGOTPLT(LDSection &pSection);
HexagonRelocator.h 85 LDSection& pSection,
91 const LDSection& pSection);
131 LDSection& pSection);
136 LDSection& pSection);
  /frameworks/compile/mclinker/include/mcld/LD/
GarbageCollection.h 45 /// pSection, create one if the list has not existed
46 SectionListTy& getReachedList(const LDSection& pSection);
49 /// pSection, return NULL if the list not exists
50 SectionListTy* findReachedList(const LDSection& pSection);
Relocator.h 60 /// @param pSection - the section of relocation applying target
65 LDSection& pSection,
71 /// @param pSection - the section of relocation applying target
74 LDSection& pSection,
102 /// @param pSection - the section of relocation applying target
105 const LDSection& pSection);
ELFObjectWriter.h 77 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
83 const LDSection& pSection,
100 uint64_t getSectEntrySize(const LDSection& pSection) const;
103 uint64_t getSectLink(const LDSection& pSection,
107 uint64_t getSectInfo(const LDSection& pSection) const;
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.h 26 MipsGOTPLT(LDSection &pSection);
MipsPLT.h 28 MipsPLT(LDSection& pSection);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.h 98 LDSection& pSection,
107 void scanLocalReloc(Relocation& pReloc, const LDSection& pSection);
111 const LDSection& pSection);
  /external/pdfium/core/src/fpdfdoc/
doc_vt.cpp 320 CTypeset::CTypeset(CSection * pSection) : m_pSection(pSection), m_pVT(pSection->m_pVT), m_rcRet(0.0f, 0.0f, 0.0f, 0.0f)
    [all...]

Completed in 146 milliseconds

1 2 3 4