HomeSort by relevance Sort by last modified time
    Searched refs:Sect (Results 1 - 7 of 7) sorted by null

  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 162 MachO::section Sect = Obj->getSection(Sec);
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.reserved2
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 136 MachO::section Sect = Obj.getSection(LCI, i);
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.flags
    [all...]
  /external/llvm/include/llvm-c/
Object.h 52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 55 const object::coff_section *Sect = Obj.getCOFFSection(Section);
57 Sec.Name = Sect->Name; // FIXME: check the null termination!
58 uint32_t Characteristics = Sect->Characteristics;
63 Obj.getSectionContents(Sect, sectionData);
  /external/llvm/lib/Object/
MachOObjectFile.cpp 418 MachO::section_64 Sect = O->getSection64(Sec);
419 return Sect.flags;
421 MachO::section Sect = O->getSection(Sec);
422 return Sect.flags;
678 MachO::section_64 Sect = getSection64(Sec);
679 Res = Sect.addr;
681 MachO::section Sect = getSection(Sec);
682 Res = Sect.addr;
690 MachO::section_64 Sect = getSection64(Sec);
691 Res = Sect.size
    [all...]
Object.cpp 92 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
94 if (std::error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 61 void ChangeSection(const MCSection *Sect, const MCExpr *Subsect) override;

Completed in 183 milliseconds