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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  963       uint32_t size = sizeof(dylib_command) + pointerAlign(dep.path.size()+1);
  964       dc->cmd                         = dep.kind;
  969       dc->dylib.current_version       = dep.currentVersion;
  970       dc->dylib.compatibility_version = dep.compatVersion;
  973       memcpy(lc+sizeof(dylib_command), dep.path.begin(), dep.path.size());
  973       memcpy(lc+sizeof(dylib_command), dep.path.begin(), dep.path.size());
  974       lc[sizeof(dylib_command)+dep.path.size()] = '\0';