Searched defs:Sections (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/Object/
H A DMachO.h109 SectionList Sections; member in class:llvm::object::MachOObjectFile
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h102 SectionList Sections; member in class:llvm::RuntimeDyldImpl
153 return (uint8_t*)Sections[SectionID].Address;
/external/jhead/
H A Djpgfile.c18 static Section_t * Sections = NULL; variable
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;
225 Sections[SectionsRea
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp110 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections, argument
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; local
296 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbol
202 getSectionsAndSymbols(const macho::Header &Header, MachOObjectFile *MachOObj, InMemoryStruct<macho::SymtabLoadCommand> *SymtabLC, std::vector<SectionRef> &Sections, std::vector<SymbolRef> &Symbols, SmallVectorImpl<uint64_t> &FoundFns) argument
[all...]
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp135 sections Sections; member in class:__anon7483::WinCOFFObjectWriter
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(),
716 e = Sections.end(); i != e; i++) {
835 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
843 for (i = Sections
[all...]
H A DELFObjectWriter.cpp312 std::vector<const MCSectionELF*> &Sections);
1160 std::vector<const MCSectionELF*> Sections; local
1165 Sections.push_back(&Section);
1167 array_pod_sort(Sections.begin(), Sections.end(), compareBySuffix);
1176 for (unsigned int I = 0, E = Sections.size(); I != E; ++I) {
1177 const MCSectionELF &Section = *Sections[I];
1181 StringRef PreviousName = Sections[I - 1]->getSectionName();
1382 std::vector<const MCSectionELF*> Sections; local
1383 Sections
1416 ComputeSectionOrder(MCAssembler &Asm, std::vector<const MCSectionELF*> &Sections) argument
1481 std::vector<const MCSectionELF*> Sections; local
[all...]
/external/llvm/include/llvm/MC/
H A DMCAssembler.h693 iplist<MCSectionData> Sections; member in class:llvm::MCAssembler
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 433 milliseconds