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

/external/llvm/lib/Object/
H A DObject.cpp99 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, argument
104 *unwrap(Sect) = *SecOrErr;
H A DMachOObjectFile.cpp157 MachO::section_64 Sect = O->getSection64(Sec); local
158 return Sect.flags;
160 MachO::section Sect = O->getSection(Sec); local
161 return Sect.flags;
497 MachO::section_64 Sect = getSection64(Sec); local
498 SectOffset = Sect.offset;
499 SectSize = Sect.size;
500 SectType = Sect.flags & MachO::SECTION_TYPE;
502 MachO::section Sect = getSection(Sec); local
503 SectOffset = Sect
523 MachO::section_64 Sect = getSection64(Sec); local
527 MachO::section Sect = getSection(Sec); local
539 MachO::section_64 Sect = getSection64(Sec); local
542 MachO::section Sect = getSection(Sec); local
590 MachO::section_64 Sect = getSection64(Sec); local
593 MachO::section Sect = getSection(Sec); local
2106 MachO::section_64 Sect = getSection64(Sec); local
2109 MachO::section Sect = getSection(Sec); local
[all...]
/external/llvm/tools/dsymutil/
H A DMachOUtils.cpp258 auto Sect = getSection(Obj, Segment, LCI, i); local
259 Sect.offset = Sect.reloff = Sect.nreloc = 0;
261 MachO::swapStruct(Sect);
262 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect)));
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp308 MachO::section Sect = Obj->getSection(Sec); local
309 Section.Address = Sect.addr;
310 Section.Size = Sect.size;
311 Section.Offset = Sect.offset;
312 Section.Alignment = Sect.align;
313 Section.RelocationTableOffset = Sect.reloff;
314 Section.NumRelocationTableEntries = Sect.nreloc;
315 Section.Flags = Sect.flags;
316 Section.Reserved1 = Sect.reserved1;
317 Section.Reserved2 = Sect
320 MachO::section_64 Sect = Obj->getSection64(Sec); local
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp824 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(), local
829 if (Sect == LiteralSections.end()) {
834 uint64_t SectAddress = Sect->getAddress();
835 uint64_t SectSize = Sect->getSize();
838 Sect->getName(SectName);
839 DataRefImpl Ref = Sect->getRawDataRefImpl();
853 Sect->getContents(BytesStr);

Completed in 161 milliseconds