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

  /external/llvm/include/llvm/Object/
COFFYAML.h 64 std::vector<Section> Sections;
ELFYAML.h 78 std::vector<Section> Sections;
MachO.h 140 // In a MachO file, sections have a segment name. This is used in the .o
208 SectionList Sections;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 53 std::vector<COFFYAML::Section> &Sections = YAMLObj.Sections;
82 Sections.push_back(Sec);
  /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;
159 Sections[SectionsRead].Offset = ftell(infile);
173 Sections[SectionsRead].Size = itemlen;
181 Sections[SectionsRead].Data = Data;
224 Sections[SectionsRead].Data = Data
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 128 // A list of all sections emitted by the dynamic linker. These sections are
131 SectionList Sections;
133 // Keep a map of sections from object file to the SectionID which
154 // Relocations to sections already loaded. Indexed by SectionID which is the
203 return Sections[SectionID].LoadAddress;
207 return (uint8_t*)Sections[SectionID].Address;
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 153 std::vector<SectionRef> &Sections,
167 Sections.push_back(*SI);
255 std::vector<SectionRef> Sections;
260 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
271 Sections[0].getAddress(BaseAddress);
295 // get the sections and supply it to the section name parsing machinery.
309 for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
312 Sections[SectIdx].isText(SectIsText);
317 if (Sections[SectIdx].getName(SectName) ||
319 continue; // Skip non-text sections
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 96 // Used to keep track of section names, so that in the YAML file sections
158 /// \brief The accumulated contents of all sections so far.
273 const std::vector<ELFYAML::Section> &Sections = Doc.Sections;
279 Header.e_shnum = Sections.size() + 4;
290 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
291 StringRef Name = Sections[i].Name;
313 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
314 const ELFYAML::Section &Sec = Sections[i];
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 123 typedef std::vector<COFFSection*> sections; typedef in class:__anon23689::WinCOFFObjectWriter
132 sections Sections;
236 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);
716 for (sections::iterator i = Sections.begin()
    [all...]
ELFObjectWriter.cpp 278 /// \param NumRegularSections - Number of non-relocation sections.
298 // Create the sections that show up in the symbol table. Currently
299 // those are the .note.GNU-stack section and the group sections.
315 std::vector<const MCSectionELF*> &Sections);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 849 iplist<MCSectionData> Sections;
853 /// The map of sections to their associated assembler backend data.
1039 const SectionDataListType &getSectionList() const { return Sections; }
1040 SectionDataListType &getSectionList() { return Sections; }
1042 iterator begin() { return Sections.begin(); }
1043 const_iterator begin() const { return Sections.begin(); }
1045 iterator end() { return Sections.end(); }
1046 const_iterator end() const { return Sections.end(); }
1048 size_t size() const { return Sections.size(); }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 37 PIMAGE_SECTION_HEADER Sections;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 37 PIMAGE_SECTION_HEADER Sections;
    [all...]

Completed in 881 milliseconds