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

Definitions

include/llvm/ADT/ArrayRef.h
  145     const T *data() const { return Data; }
  148     size_t size() const { return Length; }
include/llvm/Object/MachO.h
  265     const char *Ptr;      // Where in memory the load command is.
  266     MachO::load_command C; // The command itself.
include/llvm/ObjectYAML/MachOYAML.h
  218   static void enumeration(IO &io, MachO::LoadCommandType &value) {
include/llvm/Support/SwapByteOrder.h
   54 static const bool IsLittleEndianHost = !IsBigEndianHost;
lib/ObjectYAML/MachOEmitter.cpp
  114 size_t writeLoadCommandData<MachO::segment_command>(MachOYAML::LoadCommand &LC,
  208 void MachOWriter::writeLoadCommands(raw_ostream &OS) {
  211     llvm::MachO::macho_load_command Data = LC.Data;
lib/ObjectYAML/MachOYAML.cpp
  472 void MappingTraits<MachO::segment_command>::mapping(
tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
   19   uint32_t Size = 0;
   20   for (const auto &LC : O.LoadCommands) {
tools/llvm-objcopy/MachO/MachOReader.cpp
  118   for (auto LoadCmd : MachOObj.load_commands()) {
tools/llvm-objcopy/MachO/MachOReader.h
   28   const object::MachOObjectFile &MachOObj;
tools/llvm-objcopy/MachO/MachOWriter.cpp
  152     MachO::macho_load_command MLC = LC.MachOLoadCommand;
tools/llvm-objcopy/MachO/Object.h
   72   MachO::macho_load_command MachOLoadCommand;
tools/obj2yaml/macho2yaml.cpp
  128 const char *MachODumper::processLoadCommandData<MachO::segment_command>(
  218     MachOYAML::LoadCommand LC;
  219     const char *EndPtr = LoadCmd.Ptr;