HomeSort by relevance Sort by last modified time
    Searched full:sectiondata (Results 1 - 25 of 313) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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() : m_pSection(NULL) {
28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) {
31 SectionData* SectionData::Create(LDSection& pSection)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
SectionData.h 1 //===- SectionData.h ------------------------------------------------------===//
25 /** \class SectionData
26 * \brief SectionData provides a container for all Fragments.
28 class SectionData {
30 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>;
32 SectionData();
33 explicit SectionData(LDSection& pSection);
48 static SectionData* Create(LDSection& pSection);
50 static void Destroy(SectionData*& pSection);
64 static FragmentListType SectionData::*getSublistAccess(Fragment *)
    [all...]
  /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...]
  /external/llvm/test/Object/Inputs/COFF/
long-section-name.yaml 9 SectionData: ''
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 22 class SectionData;
27 class Fragment : public llvm::ilist_node_with_parent<Fragment, SectionData> {
34 explicit Fragment(Type pKind, SectionData* pParent = NULL);
40 const SectionData* getParent() const { return m_pParent; }
41 SectionData* getParent() { return m_pParent; }
43 void setParent(SectionData* pValue) { m_pParent = pValue; }
61 SectionData* m_pParent;
  /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 14 #include "mcld/LD/SectionData.h"
26 explicit PLTEntryBase(SectionData& pParent)
47 typedef SectionData::iterator iterator;
48 typedef SectionData::const_iterator const_iterator;
56 explicit Entry(SectionData& pParent) : EntryBase(pParent) {}
80 SectionData* m_pSectionData;
GOT.h 14 #include "mcld/LD/SectionData.h"
30 typedef SectionData::iterator iterator;
31 typedef SectionData::const_iterator const_iterator;
39 Entry(uint64_t pValue, SectionData* pParent)
74 SectionData* m_SectionData;
  /external/llvm/test/MC/ELF/
comdat-reloc.s 17 // CHECK-NOT: SectionData
18 // CHECK: SectionData
uleb.s 17 // ELF_32: SectionData (
21 // ELF_64: SectionData (
25 // MACHO_32: SectionData (
29 // MACHO_64: SectionData (
sleb.s 23 // ELF_32: SectionData (
27 // ELF_64: SectionData (
31 // MACHO_32: SectionData (
35 // MACHO_64: SectionData (
  /external/elfutils/libdw/
dwarf_getstring.c 44 if (dbg->sectiondata[IDX_debug_str] == NULL
45 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
52 const char *result = ((const char *) dbg->sectiondata[IDX_debug_str]->d_buf
55 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_getpubnames.c 50 unsigned char *const startp = dbg->sectiondata[IDX_debug_pubnames]->d_buf;
52 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
91 size_t max_size = dbg->sectiondata[IDX_debug_pubnames]->d_size;
115 = ((unsigned char *) dbg->sectiondata[IDX_debug_info]->d_buf
157 if (unlikely (dbg->sectiondata[IDX_debug_pubnames] == NULL
159 >= dbg->sectiondata[IDX_debug_pubnames]->d_size)))
187 = (unsigned char *) dbg->sectiondata[IDX_debug_pubnames]->d_buf;
189 = startp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
238 startp = (unsigned char *) dbg->sectiondata[IDX_debug_pubnames]->d_buf;
  /external/llvm/test/MC/MachO/ARM/
empty-function-nop.ll 12 ; CHECK-T1: SectionData (
15 ; CHECK-T2: SectionData (
18 ; CHECK-ARM: SectionData (
21 ; CHECK-ARMV7: SectionData (
nop-armv4-padding.s 10 @ CHECK: SectionData (
nop-armv6t2-padding.s 10 @ CHECK: SectionData (
nop-thumb-padding.s 12 @ CHECK: SectionData (
thumb2-function-relative-load.s 13 @ CHECK: SectionData (
  /frameworks/compile/mclinker/unittests/
FragmentTest.cpp 12 #include "mcld/LD/SectionData.h"
39 SectionData* s = SectionData::Create(*test);
49 // SectionData::Destroy(s);
54 SectionData* s = SectionData::Create(*test);
66 // SectionData::Destroy(s);
  /external/llvm/test/MC/ARM/
eh-directive-personalityindex.s 23 @ CHECK: SectionData (
52 @ CHECK: SectionData (
78 @ CHECK: SectionData (
85 @ CHECK: SectionData (
115 @ CHECK: SectionData (
122 @ CHECK: SectionData (
149 @ CHECK: SectionData (
156 @ CHECK: SectionData (
184 @ CHECK: SectionData (
191 @ CHECK: SectionData (
    [all...]
directive-cpu.s 5 @ CHECK: SectionData (
directive-fpu.s 5 @ CHECK: SectionData (
directive-even.s 26 @ CHECK: SectionData (
65 @ CHECK: SectionData (
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.h 17 class SectionData;
24 X86_32GOTEntry(uint64_t pContent, SectionData* pParent)
46 X86_64GOTEntry(uint64_t pContent, SectionData* pParent)

Completed in 2848 milliseconds

1 2 3 4 5 6 7 8 91011>>