Home
last modified time | relevance | path

Searched refs:isyms (Results 1 – 4 of 4) sorted by relevance

/toolchain/binutils/binutils-2.25/bfd/
Dlibcoff.h955 #define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\ argument
957 (obfd, info, ibfd, o, con, rel, isyms, secs))
Dmach-o.c1967 bfd_mach_o_asymbol **isyms = sec->indirect_syms; in bfd_mach_o_build_dysymtab() local
1970 if (isyms == NULL || num == 0) in bfd_mach_o_build_dysymtab()
1976 if (isyms[j] == NULL) in bfd_mach_o_build_dysymtab()
1978 else if (isyms[j]->symbol.section == bfd_abs_section_ptr in bfd_mach_o_build_dysymtab()
1979 && ! (isyms[j]->n_type & BFD_MACH_O_N_EXT)) in bfd_mach_o_build_dysymtab()
1983 cmd->indirect_syms[n] = isyms[j]->symbol.udata.i; in bfd_mach_o_build_dysymtab()
/toolchain/binutils/binutils-2.25/binutils/
Dreadelf.c4722 Elf_Internal_Sym * isyms = NULL; in get_32bit_elf_symbols() local
4766 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym)); in get_32bit_elf_symbols()
4768 if (isyms == NULL) in get_32bit_elf_symbols()
4775 for (j = 0, psym = isyms; j < number; j++, psym++) in get_32bit_elf_symbols()
4797 * num_syms_return = isyms == NULL ? 0 : number; in get_32bit_elf_symbols()
4799 return isyms; in get_32bit_elf_symbols()
4810 Elf_Internal_Sym * isyms = NULL; in get_64bit_elf_symbols() local
4853 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym)); in get_64bit_elf_symbols()
4855 if (isyms == NULL) in get_64bit_elf_symbols()
4862 for (j = 0, psym = isyms; j < number; j++, psym++) in get_64bit_elf_symbols()
[all …]
Dobjcopy.c1186 asymbol **isyms, long symcount) in filter_symbols() argument
1188 asymbol **from = isyms, **to = osyms; in filter_symbols()