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

References

tools/llvm-objcopy/MachO/MachOWriter.cpp
  232       if (Sec.isVirtualSection())
  235       assert(Sec.Offset && "Section offset can not be zero");
  236       assert((Sec.Size == Sec.Content.size()) && "Incorrect section size");
  236       assert((Sec.Size == Sec.Content.size()) && "Incorrect section size");
  237       memcpy(B.getBufferStart() + Sec.Offset, Sec.Content.data(),
  237       memcpy(B.getBufferStart() + Sec.Offset, Sec.Content.data(),
  238              Sec.Content.size());
  239       for (size_t Index = 0; Index < Sec.Relocations.size(); ++Index) {
  240         auto RelocInfo = Sec.Relocations[Index];
  250         memcpy(B.getBufferStart() + Sec.RelOff +