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

References

tools/llvm-objdump/MachODump.cpp
 8826   big_size = dyst.ilocalsym;
 8827   big_size += dyst.nlocalsym;
 8828   if (big_size > nsyms)
 8838   big_size = dyst.iextdefsym;
 8839   big_size += dyst.nextdefsym;
 8840   if (big_size > nsyms)
 8850   big_size = dyst.iundefsym;
 8851   big_size += dyst.nundefsym;
 8852   if (big_size > nsyms)
 8862   big_size = dyst.ntoc;
 8863   big_size *= sizeof(struct MachO::dylib_table_of_contents);
 8864   big_size += dyst.tocoff;
 8865   if (big_size > object_size)
 8895   big_size = dyst.nextrefsyms;
 8896   big_size *= sizeof(struct MachO::dylib_reference);
 8897   big_size += dyst.extrefsymoff;
 8898   if (big_size > object_size)
 8908   big_size = dyst.nindirectsyms;
 8909   big_size *= sizeof(uint32_t);
 8910   big_size += dyst.indirectsymoff;
 8911   if (big_size > object_size)
 8921   big_size = dyst.nextrel;
 8922   big_size *= sizeof(struct MachO::relocation_info);
 8923   big_size += dyst.extreloff;
 8924   if (big_size > object_size)
 8934   big_size = dyst.nlocrel;
 8935   big_size *= sizeof(struct MachO::relocation_info);
 8936   big_size += dyst.locreloff;
 8937   if (big_size > object_size)