Lines Matching refs:nameoff
3730 unsigned int nameoff; in bfd_mach_o_read_dylinker() local
3737 nameoff = bfd_h_get_32 (abfd, raw.str); in bfd_mach_o_read_dylinker()
3739 cmd->name_offset = nameoff; in bfd_mach_o_read_dylinker()
3740 namelen = command->len - nameoff; in bfd_mach_o_read_dylinker()
3741 nameoff += command->offset; in bfd_mach_o_read_dylinker()
3745 if (bfd_seek (abfd, nameoff, SEEK_SET) != 0 in bfd_mach_o_read_dylinker()
3756 unsigned int nameoff; in bfd_mach_o_read_dylib() local
3777 nameoff = bfd_h_get_32 (abfd, raw.name); in bfd_mach_o_read_dylib()
3782 cmd->name_offset = command->offset + nameoff; in bfd_mach_o_read_dylib()
3783 namelen = command->len - nameoff; in bfd_mach_o_read_dylib()
3799 unsigned int nameoff; in bfd_mach_o_read_prebound_dylib() local
3808 nameoff = bfd_h_get_32 (abfd, raw.name); in bfd_mach_o_read_prebound_dylib()
3810 if (nameoff > command->len || modoff > command->len) in bfd_mach_o_read_prebound_dylib()
3820 cmd->name_offset = command->offset + nameoff; in bfd_mach_o_read_prebound_dylib()
3824 cmd->name_str = (char *)str + nameoff - (sizeof (raw) + BFD_MACH_O_LC_SIZE); in bfd_mach_o_read_prebound_dylib()
3865 unsigned int nameoff; in bfd_mach_o_read_fvmlib() local
3872 nameoff = bfd_h_get_32 (abfd, raw.name); in bfd_mach_o_read_fvmlib()
3876 fvm->name_offset = command->offset + nameoff; in bfd_mach_o_read_fvmlib()
3877 namelen = command->len - nameoff; in bfd_mach_o_read_fvmlib()