HomeSort by relevance Sort by last modified time
    Searched defs:Sections (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Object/
MachO.h 109 SectionList Sections;
  /external/jhead/
jpgfile.c 18 static Section_t * Sections = NULL;
109 // Check sections array to see if it needs to be increased in size.
118 Sections = (Section_t *)realloc(Sections, sizeof(Section_t)*SectionsAllocated);
119 if (Sections == NULL){
158 Sections[SectionsRead].Type = marker;
172 Sections[SectionsRead].Size = itemlen;
180 Sections[SectionsRead].Data = Data;
223 Sections[SectionsRead].Data = Data;
224 Sections[SectionsRead].Size = size
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 100 // A list of emmitted sections.
102 SectionList Sections;
104 // Keep a map of sections from object file to the SectionID which
123 // Relocations to sections already loaded. Indexed by SectionID which is the
153 return (uint8_t*)Sections[SectionID].Address;
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 110 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections,
112 for (unsigned i = 0; i != Sections.size(); ++i) {
114 Sections[i].getAddress(SectAddr);
115 Sections[i].getSize(SectSize);
120 Sections[i].getContents(bytes);
121 Sections[i].getName(name);
205 std::vector<SectionRef> &Sections,
218 Sections.push_back(*SI);
292 std::vector<SectionRef> Sections;
296 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 126 typedef std::vector<COFFSection*> sections; typedef in class:__anon9043::WinCOFFObjectWriter
135 sections Sections;
238 assert(Section->Number != -1 && "Sections with relocations must be real!");
330 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
349 return createCOFFEntity<COFFSection>(Name, Sections);
715 for (sections::iterator i = Sections.begin()
    [all...]
ELFObjectWriter.cpp 295 // Create the sections that show up in the symbol table. Currently
296 // those are the .note.GNU-stack section and the group sections.
312 std::vector<const MCSectionELF*> &Sections);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 693 iplist<MCSectionData> Sections;
697 /// The map of sections to their associated assembler backend data.
843 const SectionDataListType &getSectionList() const { return Sections; }
844 SectionDataListType &getSectionList() { return Sections; }
846 iterator begin() { return Sections.begin(); }
847 const_iterator begin() const { return Sections.begin(); }
849 iterator end() { return Sections.end(); }
850 const_iterator end() const { return Sections.end(); }
852 size_t size() const { return Sections.size(); }

Completed in 435 milliseconds