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

  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 58 const object::coff_section *Sect = Obj.getCOFFSection(iter);
60 Sec.Name = Sect->Name; // FIXME: check the null termination!
61 uint32_t Characteristics = Sect->Characteristics;
66 Obj.getSectionContents(Sect, sectionData);
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 169 macho::Section Sect = Obj->getSection(Sec);
170 Section.Address = Sect.Address;
171 Section.Size = Sect.Size;
172 Section.Offset = Sect.Offset;
173 Section.Alignment = Sect.Align;
174 Section.RelocationTableOffset = Sect.RelocationTableOffset;
175 Section.NumRelocationTableEntries = Sect.NumRelocationTableEntries;
176 Section.Flags = Sect.Flags;
177 Section.Reserved1 = Sect.Reserved1;
178 Section.Reserved2 = Sect.Reserved2
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 137 macho::Section Sect = Obj.getSection(LCI, i);
138 DumpSectionData(Obj, i, StringRef(Sect.Name, 16),
139 StringRef(Sect.SegmentName, 16), Sect.Address,
140 Sect.Size, Sect.Offset, Sect.Align,
141 Sect.RelocationTableOffset,
142 Sect.NumRelocationTableEntries, Sect.Flags
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 406 macho::Section64 Sect = O->getSection64(Sec);
407 return Sect.Flags;
409 macho::Section Sect = O->getSection(Sec);
410 return Sect.Flags;
685 macho::Section64 Sect = getSection64(Sec);
686 Res = Sect.Address;
688 macho::Section Sect = getSection(Sec);
689 Res = Sect.Address;
697 macho::Section64 Sect = getSection64(Sec);
698 Res = Sect.Size
    [all...]

Completed in 252 milliseconds