Searched defs:Sect (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Object/
H A DObject.cpp92 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, argument
94 if (std::error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
H A DMachOObjectFile.cpp418 MachO::section_64 Sect = O->getSection64(Sec); local
419 return Sect.flags;
421 MachO::section Sect = O->getSection(Sec); local
422 return Sect.flags;
678 MachO::section_64 Sect = getSection64(Sec); local
679 Res = Sect.addr;
681 MachO::section Sect = getSection(Sec); local
682 Res = Sect.addr;
690 MachO::section_64 Sect = getSection64(Sec); local
691 Res = Sect
693 MachO::section Sect = getSection(Sec); local
706 MachO::section_64 Sect = getSection64(Sec); local
710 MachO::section Sect = getSection(Sec); local
723 MachO::section_64 Sect = getSection64(Sec); local
726 MachO::section Sect = getSection(Sec); local
829 MachO::section_64 Sect = getSection64(Sec); local
832 MachO::section Sect = getSection(Sec); local
1841 MachO::section_64 Sect = getSection64(Sec); local
1844 MachO::section Sect = getSection(Sec); local
[all...]
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp162 MachO::section Sect = Obj->getSection(Sec); local
163 Section.Address = Sect.addr;
164 Section.Size = Sect.size;
165 Section.Offset = Sect.offset;
166 Section.Alignment = Sect.align;
167 Section.RelocationTableOffset = Sect.reloff;
168 Section.NumRelocationTableEntries = Sect.nreloc;
169 Section.Flags = Sect.flags;
170 Section.Reserved1 = Sect.reserved1;
171 Section.Reserved2 = Sect
174 MachO::section_64 Sect = Obj->getSection64(Sec); local
[all...]
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp55 const object::coff_section *Sect = Obj.getCOFFSection(Section); local
57 Sec.Name = Sect->Name; // FIXME: check the null termination!
58 uint32_t Characteristics = Sect->Characteristics;
63 Obj.getSectionContents(Sect, sectionData);
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp136 MachO::section Sect = Obj.getSection(LCI, i); local
137 DumpSectionData(Obj, i, StringRef(Sect.sectname, 16),
138 StringRef(Sect.segname, 16), Sect.addr,
139 Sect.size, Sect.offset, Sect.align,
140 Sect.reloff, Sect.nreloc, Sect
158 MachO::section_64 Sect = Obj.getSection64(LCI, i); local
[all...]

Completed in 394 milliseconds