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

  /external/llvm/tools/macho-dump/
macho-dump.cpp 143 InMemoryStruct<macho::Section> Sect;
144 Obj.ReadSection(LCI, i, Sect);
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16),
151 StringRef(Sect->SegmentName, 16), Sect->Address,
152 Sect->Size, Sect->Offset, Sect->Align,
153 Sect->RelocationTableOffset,
154 Sect->NumRelocationTableEntries, Sect->Flags
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 531 InMemoryStruct<macho::Section64> Sect;
532 getSection64(DRI, Sect);
533 Result = Sect->Address;
535 InMemoryStruct<macho::Section> Sect;
536 getSection(DRI, Sect);
537 Result = Sect->Address;
545 InMemoryStruct<macho::Section64> Sect;
546 getSection64(DRI, Sect);
547 Result = Sect->Size;
549 InMemoryStruct<macho::Section> Sect;
    [all...]

Completed in 159 milliseconds