Home | History | Annotate | Download | only in bfd

Lines Matching defs:isym

1828   Elf_Internal_Sym *isym;
2007 isym = isymbuf + ELF32_R_SYM (irel->r_info);
2008 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
2009 symval = isym->st_value;
2069 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
2071 if (isym != NULL)
2075 isymend = isym + symtab_hdr->sh_info;
2076 for (; isym < isymend; isym++)
2078 if (isym->st_shndx == sec_shndx)
2080 if (isym->st_value > addr
2081 && isym->st_value <= toaddr)
2082 isym->st_value -= count;
2084 if (isym->st_value <= addr
2085 && isym->st_value + isym->st_size > addr)
2090 BFD_ASSERT (isym->st_value + isym->st_size >= addr + count);
2091 isym->st_size -= count;
2524 Elf_Internal_Sym *isym;
2527 isym = isymbuf + ELF32_R_SYM (irel->r_info);
2528 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
2529 symval = isym->st_value;
2859 Elf_Internal_Sym *isym, *isymend;
2867 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
2868 isymend = isym + symtab_hdr->sh_info;
2870 for (; isym != NULL && isym < isymend; isym++)
2872 if (isym->st_value == section_offset_of_ret_insn
2873 && isym->st_shndx == sec_shndx)
2953 isym = isymbuf
2956 (abfd, isym->st_shndx);
2957 symval = isym->st_value;
3152 Elf_Internal_Sym *isym, *isymend;
3178 for (isym = isymbuf, secpp = sections; isym < isymend; ++isym, ++secpp)
3182 if (isym->st_shndx == SHN_UNDEF)
3184 else if (isym->st_shndx == SHN_ABS)
3186 else if (isym->st_shndx == SHN_COMMON)
3189 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);