Home | History | Annotate | Download | only in bfd

Lines Matching defs:isym

1731   Elf_Internal_Sym *isym;
1830 isym = isymbuf + ELF32_R_SYM (irel->r_info);
1831 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
1832 symval = isym->st_value;
1876 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
1878 if (isym != NULL)
1882 isymend = isym + symtab_hdr->sh_info;
1883 for (; isym < isymend; isym++)
1885 if (isym->st_shndx == sec_shndx)
1887 if (isym->st_value > addr
1888 && isym->st_value <= toaddr)
1889 isym->st_value -= count;
1891 if (isym->st_value <= addr
1892 && isym->st_value + isym->st_size > addr)
1897 BFD_ASSERT (isym->st_value + isym->st_size >= addr + count);
1898 isym->st_size -= count;
2089 Elf_Internal_Sym *isym;
2092 isym = isymbuf + ELF32_R_SYM (irel->r_info);
2093 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
2094 symval = isym->st_value;
2423 Elf_Internal_Sym *isym, *isymend;
2431 isym
2432 isymend = isym + symtab_hdr->sh_info;
2434 for (; isym != NULL && isym < isymend; isym++)
2436 if (isym->st_value == section_offset_of_ret_insn
2437 && isym->st_shndx == sec_shndx)
2517 isym = isymbuf
2520 (abfd, isym->st_shndx);
2521 symval = isym->st_value;
2654 Elf_Internal_Sym *isym, *isymend;
2680 for (isym = isymbuf, secpp = sections; isym < isymend; ++isym, ++secpp)
2684 if (isym->st_shndx == SHN_UNDEF)
2686 else if (isym->st_shndx == SHN_ABS)
2688 else if (isym->st_shndx == SHN_COMMON)
2691 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);