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

  /external/llvm/include/llvm/Object/
MachO.h 96 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/tools/llvm-objdump/
MachODump.cpp 108 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections,
110 for (unsigned i = 0; i != Sections.size(); ++i) {
112 Sections[i].getAddress(SectAddr);
113 Sections[i].getSize(SectSize);
118 Sections[i].getContents(bytes);
119 Sections[i].getName(name);
203 std::vector<SectionRef> &Sections,
216 Sections.push_back(*SI);
288 std::vector<SectionRef> Sections;
292 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 126 typedef std::vector<COFFSection*> sections; typedef in class:__anon8234::WinCOFFObjectWriter
134 sections Sections;
237 assert(Section->Number != -1 && "Sections with relocations must be real!");
328 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
347 return createCOFFEntity<COFFSection>(Name, Sections);
730 for (sections::iterator i = Sections.begin()
    [all...]
ELFObjectWriter.cpp 858 std::vector<const MCSectionELF*> Sections;
863 Sections.push_back(&Section);
865 array_pod_sort(Sections.begin(), Sections.end(), compareBySuffix);
874 for (unsigned int I = 0, E = Sections.size(); I != E; ++I) {
875 const MCSectionELF &Section = *Sections[I];
879 StringRef PreviousName = Sections[I - 1]->getSectionName();
933 // Add sections to the groups
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 671 iplist<MCSectionData> Sections;
675 /// The map of sections to their associated assembler backend data.
818 const SectionDataListType &getSectionList() const { return Sections; }
819 SectionDataListType &getSectionList() { return Sections; }
821 iterator begin() { return Sections.begin(); }
822 const_iterator begin() const { return Sections.begin(); }
824 iterator end() { return Sections.end(); }
825 const_iterator end() const { return Sections.end(); }
827 size_t size() const { return Sections.size(); }

Completed in 132 milliseconds