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

References

tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
  207       Sec.RelOff = Sec.Relocations.empty() ? 0 : Offset;
  208       Sec.NReloc = Sec.Relocations.size();
tools/llvm-objcopy/MachO/MachOReader.cpp
   98     S.Relocations.reserve(S.NReloc);
  106       S.Relocations.push_back(R);
  109     assert(S.NReloc == S.Relocations.size() &&
  208       for (auto &Reloc : Sec.Relocations)
tools/llvm-objcopy/MachO/MachOWriter.cpp
  239       for (size_t Index = 0; Index < Sec.Relocations.size(); ++Index) {
  240         auto RelocInfo = Sec.Relocations[Index];