/frameworks/compile/mclinker/lib/LD/ |
SectionData.cpp | 1 //===- SectionData.cpp ----------------------------------------------------===// 9 #include <mcld/LD/SectionData.h> 18 typedef GCFactory<SectionData, MCLD_SECTIONS_PER_INPUT> SectDataFactory; 23 // SectionData 25 SectionData::SectionData() 29 SectionData::SectionData(LDSection &pSection) 33 SectionData* SectionData::Create(LDSection& pSection [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
SectionData.h | 1 //===- SectionData.h ------------------------------------------------------===// 24 /** \class SectionData 25 * \brief SectionData provides a container for all Fragments. 27 class SectionData 30 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>; 32 SectionData(); 33 explicit SectionData(LDSection &pSection); 35 SectionData(const SectionData &); // DO NOT IMPLEMENT 36 SectionData& operator=(const SectionData &); // DO NOT IMPLEMEN [all...] |
LDSection.h | 21 class SectionData; 98 /// constraint is set in SectionData::setAlignment. addr() contains the 150 // ----- SectionData ----- // 151 const SectionData* getSectionData() const { return m_Data.sect_data; } 152 SectionData* getSectionData() { return m_Data.sect_data; } 154 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; } 188 SectionData* sect_data; 208 /// m_Data - the SectionData or RelocData of this section
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
dyn_bits.c | 274 noiselessCounter(SECTION_DATA *sectionData, 302 sectionData->noOfSections = 0; 303 sectionData->huffmanBits = 0; 304 sectionData->sideInfoBits = 0; 307 if (sectionData->maxSfbPerGroup == 0) 313 for (grpNdx=0; grpNdx<sectionData->sfbCnt; grpNdx+=sectionData->sfbPerGroup) { 315 sectionInfo = sectionData->sectionInfo + sectionData->noOfSections; 318 sectionData->maxSfbPerGroup [all...] |
bitenc.c | 43 SECTION_DATA *sectionData, 52 for(i=0; i<sectionData->noOfSections; i++) { 53 psectioninfo = &(sectionData->sectionInfo[i]); 97 SECTION_DATA *sectionData, 109 WriteBits(hBitStream,sectionData->maxSfbPerGroup,6); 116 WriteBits(hBitStream,sectionData->maxSfbPerGroup,4); 134 static Word32 encodeSectionData(SECTION_DATA *sectionData, 144 switch(sectionData->blockType) 159 for(i=0;i<sectionData->noOfSections;i++) { 160 WriteBits(hBitStream,sectionData->sectionInfo[i].codeBook,4) [all...] |
/frameworks/compile/mclinker/include/mcld/Fragment/ |
Fragment.h | 21 class SectionData; 41 Fragment(Type pKind, SectionData *pParent = NULL); 47 const SectionData* getParent() const { return m_pParent; } 48 SectionData* getParent() { return m_pParent; } 50 void setParent(SectionData *pValue) { m_pParent = pValue; } 71 SectionData* m_pParent;
|
NullFragment.h | 16 class SectionData; 25 NullFragment(SectionData* pSD = NULL);
|
TargetFragment.h | 16 class SectionData; 25 TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL)
|
/external/aac/libAACenc/src/ |
dyn_bits.cpp | 390 SECTION_DATA* const RESTRICT sectionData, 419 sectionData->noOfSections = 0; 420 sectionData->huffmanBits = 0; 421 sectionData->sideInfoBits = 0; 424 if (sectionData->maxSfbPerGroup == 0) 428 for (grpNdx = 0; grpNdx < sectionData->sfbCnt; grpNdx += sectionData->sfbPerGroup) 430 huffsection = sectionData->huffsection + sectionData->noOfSections; 434 sectionData->maxSfbPerGroup [all...] |
/frameworks/compile/mclinker/include/mcld/Target/ |
PLT.h | 13 #include <mcld/LD/SectionData.h> 27 PLTEntryBase(SectionData& pParent) 56 typedef SectionData::iterator iterator; 57 typedef SectionData::const_iterator const_iterator; 66 Entry(SectionData& pParent) 93 SectionData* m_pSectionData;
|
GOT.h | 13 #include <mcld/LD/SectionData.h> 31 typedef SectionData::iterator iterator; 32 typedef SectionData::const_iterator const_iterator; 41 Entry(uint64_t pValue, SectionData* pParent) 82 SectionData* m_SectionData;
|
/external/llvm/test/MC/ELF/ |
comdat-reloc.s | 17 // CHECK-NOT: SectionData 18 // CHECK: SectionData
|
relax-arith.s | 8 // CHECK: SectionData ( 24 // CHECK: SectionData ( 39 // CHECK: SectionData ( 54 // CHECK: SectionData ( 69 // CHECK: SectionData ( 84 // CHECK: SectionData ( 99 // CHECK: SectionData (
|
/frameworks/compile/mclinker/unittests/ |
FragmentTest.cpp | 12 #include <mcld/LD/SectionData.h> 44 SectionData* s = SectionData::Create(*test); 54 // SectionData::Destroy(s); 59 SectionData* s = SectionData::Create(*test); 71 // SectionData::Destroy(s);
|
SectionDataTest.cpp | 11 #include <mcld/LD/SectionData.h> 46 SectionData* s = SectionData::Create(*test); 56 SectionData* s = SectionData::Create(*test);
|
/external/llvm/test/MC/ARM/ |
eh-directive-personalityindex.s | 21 @ CHECK: SectionData ( 50 @ CHECK: SectionData ( 76 @ CHECK: SectionData ( 83 @ CHECK: SectionData ( 113 @ CHECK: SectionData ( 120 @ CHECK: SectionData ( 147 @ CHECK: SectionData ( 154 @ CHECK: SectionData ( 182 @ CHECK: SectionData ( 189 @ CHECK: SectionData ( [all...] |
directive-cpu.s | 5 @ CHECK: SectionData (
|
directive-fpu.s | 5 @ CHECK: SectionData (
|
directive-even.s | 26 @ CHECK: SectionData ( 65 @ CHECK: SectionData (
|
eh-directive-movsp.s | 21 @ CHECK: SectionData ( 41 @ CHECK: SectionData (
|
/frameworks/compile/mclinker/lib/Target/X86/ |
X86GOT.h | 17 class SectionData; 25 X86_32GOTEntry(uint64_t pContent, SectionData* pParent) 50 X86_64GOTEntry(uint64_t pContent, SectionData* pParent)
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonGOT.h | 17 class SectionData; 25 HexagonGOTEntry(uint64_t pContent, SectionData* pParent)
|
/frameworks/compile/mclinker/include/mcld/Object/ |
ObjectBuilder.h | 22 class SectionData; 67 static bool MoveSectionData(SectionData& pFrom, SectionData& pTo); 79 /// AppendFragment - To append pFrag to the given SectionData pSD. 90 static uint64_t AppendFragment(Fragment& pFrag, SectionData& pSD,
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
AArch64GOT.cpp | 63 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList(); 65 SectionData::iterator frag, fragEnd = m_SectionData->end(); 71 // push GOTPLT into the SectionData and setup the offset 86 // push GOT into the SectionData and setup the offset 115 SectionData::iterator entry(m_pGOTPLTFront); 116 SectionData::iterator e_end; 120 e_end = SectionData::iterator(m_pGOTFront);
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMGOT.cpp | 59 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList(); 61 SectionData::iterator frag, fragEnd = m_SectionData->end(); 67 // push GOTPLT into the SectionData and setup the offset 81 // push GOT into the SectionData and setup the offset 110 SectionData::iterator entry(m_pGOTPLTFront); 111 SectionData::iterator e_end; 115 e_end = SectionData::iterator(m_pGOTFront);
|