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

References

include/llvm/BinaryFormat/MachO.h
 1372   sys::swapByteOrder(C.cmdsize);
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 5389       if (ident_command.cmd == LC_IDENT && ident_command.cmdsize != 0) {
 5390         char *buf = (char *)malloc(ident_command.cmdsize);
 5391         if (buf != nullptr && m_data.CopyData(offset, ident_command.cmdsize,
 5392                                               buf) == ident_command.cmdsize) {
 5393           buf[ident_command.cmdsize - 1] = '\0';
 5399       offset = cmd_offset + ident_command.cmdsize;