• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/cctools-845/libstuff/

Lines Matching defs:end

189 			"load command %u extends past the end of the load "
213 * string table is at the end of the file and that the symbol table is
323 "does not cover the end of the file (can't "
336 "does not cover the end of the file (can't "
353 /* update offset to end of dyld_info contents */
557 uint32_t end, sigend, strend, rounded_strend;
561 end = object->object_size;
565 if(sigend != end)
566 fatal_arch(arch, member, "code signature not at the end "
570 * string table end rouned to 16 bytes is the offset where the
571 * code signature starts then just back up the current "end" to
572 * the end of the string table.
574 end = object->code_sig_cmd->dataoff;
579 end = strend;
586 * string table may not be exactly at the end of the
590 if(strend != end && rounded_strend != end)
591 fatal_arch(arch, member, "string table not at the end "
594 * To make the code work that assumes the end of string table is
595 * at the end of the object file change the object_size to be
596 * the end of the string table here. This could be done at the
597 * end of this routine but since all the later checks are fatal
602 end = object->st->stroff;
627 if(indirectend != end && rounded_indirectend != end){
632 object->input_indirectsym_pad = end - indirectend;
633 end = object->dyst->indirectsymoff;
636 object->st->nsyms * sizeof(struct nlist) != end)
643 object->st->nsyms * sizeof(struct nlist_64) != end)
652 object->st->nsyms * sizeof(struct nlist) != end)
654 "table not at the end of the file (can't be "
659 object->st->nsyms * sizeof(struct nlist_64) != end)
661 "table not at the end of the file (can't be "