reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/MachO.h
 1099   sys::swapByteOrder(sect.size);
lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
  127       NSec.Size = Sec32.size;
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  189   uint32_t PTSectionSize = Sec32.size;
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
  217     uint32_t JTSectionSize = Sec32.size;
lib/Object/MachOObjectFile.cpp
  310           s.offset < SizeOfHeaders && s.size != 0)
  315       BigSize += s.size;
  329           s.size > S.filesize)
  335           Obj.getHeader().filetype != MachO::MH_DSYM && s.size != 0 &&
  341       BigSize += s.size;
  344       if (S.vmsize != 0 && s.size != 0 && BigSize > BigEnd)
  354         if (Error Err = checkOverlappingElement(Elements, s.offset, s.size,
 1935     SectSize = Sect.size;
 1965     Size = Sect.size;
lib/ObjectYAML/MachOEmitter.cpp
   96   TempSec.size = Sec.size;
lib/ObjectYAML/MachOYAML.cpp
  446   IO.mapRequired("size", Section.size);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  350           size_t contentSize = read32(&sect->size, isBig);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  652     sout->size = sin.content.size();
  719       sect->size      = section->content.size();
tools/llvm-objcopy/MachO/MachOReader.cpp
   40   S.Size = Sec.size;
tools/llvm-objcopy/MachO/MachOWriter.cpp
  214   Temp.size = Sec.Size;
tools/llvm-objdump/MachODump.cpp
  785           uint32_t count = Sec.size / stride;
 3045             ReferenceValue < Sec.addr + Sec.size) {
 3115             ReferenceValue < Sec.addr + Sec.size) {
10077         PrintSection(S.sectname, S.segname, S.addr, S.size, S.offset, S.align,
tools/llvm-readobj/MachODumper.cpp
  337     Section.Size        = Sect.size;
tools/llvm-size/llvm-size.cpp
  267         uint64_t Sec_size = Sec.size;
  273         sec_total += Sec.size;
  325             total_text += Sec.size;
  327             total_data += Sec.size;
  329             total_objc += Sec.size;
  331             total_others += Sec.size;
tools/obj2yaml/macho2yaml.cpp
   71   TempSec.size = Sec.size;
   82         yaml::BinaryRef(Obj.getSectionContents(Sec.offset, Sec.size));