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

1 2 3 4

  /frameworks/compile/mclinker/lib/Target/
PLT.cpp 20 PLT::PLT(LDSection& pSection) : m_Section(pSection) {
21 m_pSectionData = IRBuilder::CreateSectionData(pSection);
GOT.cpp 24 GOT::GOT(LDSection& pSection) : m_Section(pSection) {
25 m_SectionData = IRBuilder::CreateSectionData(pSection);
OutputRelocSection.cpp 24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection)
29 assert(!pSection.hasRelocData() &&
31 m_pRelocData = IRBuilder::CreateRelocData(pSection);
  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) {
31 SectionData* SectionData::Create(LDSection& pSection) {
33 new (result) SectionData(pSection);
37 void SectionData::Destroy(SectionData*& pSection) {
38 pSection->~SectionData();
39 g_SectDataFactory->deallocate(pSection);
40 pSection = NULL;
RelocData.cpp 27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) {
30 RelocData* RelocData::Create(LDSection& pSection) {
32 new (result) RelocData(pSection);
36 void RelocData::Destroy(RelocData*& pSection) {
37 pSection->~RelocData();
38 g_RelocDataFactory->deallocate(pSection);
39 pSection = NULL;
ELFSegment.cpp 73 LDSection* pSection) {
74 return m_SectionList.insert(pPos, pSection);
77 void ELFSegment::append(LDSection* pSection) {
78 assert(pSection != NULL);
79 if (pSection->align() > m_MaxSectionAlign)
80 m_MaxSectionAlign = pSection->align();
81 m_SectionList.push_back(pSection);
DebugString.cpp 40 void DebugString::merge(LDSection& pSection) {
43 SectionData::iterator it, end = pSection.getSectionData()->end();
44 for (it = pSection.getSectionData()->begin(); it != end; ++it) {
53 const char* str_end = str + pSection.size();
90 DebugString* DebugString::Create(LDSection& pSection) {
91 g_DebugString->setOutputSection(pSection);
LDSection.cpp 77 void LDSection::Destroy(LDSection*& pSection) {
78 g_SectFactory->destroy(pSection);
79 g_SectFactory->deallocate(pSection);
80 pSection = NULL;
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.cpp 21 X86_32GOT::X86_32GOT(LDSection& pSection) : GOT(pSection) {
34 X86_64GOT::X86_64GOT(LDSection& pSection) : GOT(pSection) {
X86GOTPLT.h 28 explicit X86_32GOTPLT(LDSection& pSection);
45 explicit X86_64GOTPLT(LDSection& pSection);
X86GOT.h 34 explicit X86_32GOT(LDSection& pSection);
56 explicit X86_64GOT(LDSection& pSection);
X86Relocator.h 83 LDSection& pSection,
102 LDSection& pSection) = 0;
107 LDSection& pSection) = 0;
163 LDSection& pSection);
168 LDSection& pSection);
172 void convertTLSIEtoLE(Relocation& pReloc, LDSection& pSection);
228 LDSection& pSection);
233 LDSection& pSection);
X86GOTPLT.cpp 23 X86_32GOTPLT::X86_32GOTPLT(LDSection& pSection) : X86_32GOT(pSection) {
57 X86_64GOTPLT::X86_64GOTPLT(LDSection& pSection) : X86_64GOT(pSection) {
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 21 HexagonGOT::HexagonGOT(LDSection& pSection) : GOT(pSection) {
HexagonGOTPLT.cpp 23 HexagonGOTPLT::HexagonGOTPLT(LDSection& pSection) : HexagonGOT(pSection) {
28 pSection.setAlign(8);
HexagonGOT.h 34 explicit HexagonGOT(LDSection& pSection);
HexagonGOTPLT.h 28 explicit HexagonGOTPLT(LDSection& pSection);
  /frameworks/compile/mclinker/include/mcld/LD/
DebugString.h 30 static DebugString* Create(LDSection& pSection);
34 void merge(LDSection& pSection);
48 void setOutputSection(LDSection& pSection)
49 { m_pSection = &pSection; }
ELFObjectWriter.h 73 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
80 const LDSection& pSection,
97 uint64_t getSectEntrySize(const LDSection& pSection) const;
100 uint64_t getSectLink(const LDSection& pSection,
104 uint64_t getSectInfo(const LDSection& pSection) const;
GarbageCollection.h 42 /// pSection, create one if the list has not existed
43 SectionListTy& getReachedList(const LDSection& pSection);
46 /// pSection, return NULL if the list not exists
47 SectionListTy* findReachedList(const LDSection& pSection);
  /external/pdfium/core/fpdfdoc/
cpdf_variabletext.cpp 120 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get();
122 pdfium::CollectionSize<int32_t>(pSection->m_LineArray) - 1) {
139 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get();
140 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex) ||
141 !pdfium::IndexInBounds(pSection->m_WordArray, m_CurPos.nWordIndex)) {
145 CPVT_WordInfo* pWord = pSection->m_WordArray[m_CurPos.nWordIndex].get();
150 m_pVT->InToOut(CFX_PointF(pWord->fWordX + pSection->m_Rect.left,
151 pWord->fWordY + pSection->m_Rect.top));
165 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get();
166 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex)
    [all...]
ctypeset.h 19 explicit CTypeset(CSection* pSection);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.h 25 explicit MipsGOTPLT(LDSection& pSection);
MipsPLT.h 27 explicit MipsPLT(LDSection& pSection);
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 26 OutputRelocSection(Module& pModule, LDSection& pSection);

Completed in 2436 milliseconds

1 2 3 4