Lines Matching defs:module
2015 bfd_mach_o_dylib_module *module = &cmd->dylib_module[i];
2019 iinit = module->iinit & 0xffff;
2020 iinit |= ((module->iterm & 0xffff) << 16);
2022 ninit = module->ninit & 0xffff;
2023 ninit |= ((module->nterm & 0xffff) << 16);
2029 bfd_h_put_32 (abfd, module->module_name_idx, &w.module_name);
2030 bfd_h_put_32 (abfd, module->iextdefsym, &w.iextdefsym);
2031 bfd_h_put_32 (abfd, module->nextdefsym, &w.nextdefsym);
2032 bfd_h_put_32 (abfd, module->irefsym, &w.irefsym);
2033 bfd_h_put_32 (abfd, module->nrefsym, &w.nrefsym);
2034 bfd_h_put_32 (abfd, module->ilocalsym, &w.ilocalsym);
2035 bfd_h_put_32 (abfd, module->nlocalsym, &w.nlocalsym);
2036 bfd_h_put_32 (abfd, module->iextrel, &w.iextrel);
2037 bfd_h_put_32 (abfd, module->nextrel, &w.nextrel);
2040 bfd_h_put_64 (abfd, module->objc_module_info_addr,
2042 bfd_h_put_32 (abfd, module->objc_module_info_size,
2052 bfd_h_put_32 (abfd, module->module_name_idx, &n.module_name);
2053 bfd_h_put_32 (abfd, module->iextdefsym, &n.iextdefsym);
2054 bfd_h_put_32 (abfd, module->nextdefsym, &n.nextdefsym);
2055 bfd_h_put_32 (abfd, module->irefsym, &n.irefsym);
2056 bfd_h_put_32 (abfd, module->nrefsym, &n.nrefsym);
2057 bfd_h_put_32 (abfd, module->ilocalsym, &n.ilocalsym);
2058 bfd_h_put_32 (abfd, module->nlocalsym, &n.nlocalsym);
2059 bfd_h_put_32 (abfd, module->iextrel, &n.iextrel);
2060 bfd_h_put_32 (abfd, module->nextrel, &n.nextrel);
2063 bfd_h_put_32 (abfd, module->objc_module_info_addr,
2065 bfd_h_put_32 (abfd, module->objc_module_info_size,
2232 This should be OK for single-module files - but it is not likely to work
2233 for multi-module shared libraries.
4051 bfd_mach_o_dylib_module *module = &cmd->dylib_module[i];
4058 module->module_name_idx = bfd_h_get_32 (abfd, buf + 0);
4059 module->iextdefsym = bfd_h_get_32 (abfd, buf + 4);
4060 module->nextdefsym = bfd_h_get_32 (abfd, buf + 8);
4061 module->irefsym = bfd_h_get_32 (abfd, buf + 12);
4062 module->nrefsym = bfd_h_get_32 (abfd, buf + 16);
4063 module->ilocalsym = bfd_h_get_32 (abfd, buf + 20);
4064 module->nlocalsym = bfd_h_get_32 (abfd, buf + 24);
4065 module->iextrel = bfd_h_get_32 (abfd, buf + 28);
4066 module->nextrel = bfd_h_get_32 (abfd, buf + 32);
4068 module->iinit = v & 0xffff;
4069 module->iterm = (v >> 16) & 0xffff;
4071 module->ninit = v & 0xffff;
4072 module->nterm = (v >> 16) & 0xffff;
4075 module->objc_module_info_size = bfd_h_get_32 (abfd, buf + 44);
4076 module->objc_module_info_addr = bfd_h_get_64 (abfd, buf + 48);
4080 module->objc_module_info_addr = bfd_h_get_32 (abfd, buf + 44);
4081 module->objc_module_info_size = bfd_h_get_32 (abfd, buf + 48);