Home | History | Annotate | Download | only in bfd

Lines Matching defs:isym

281       Elf_Internal_Sym *isym;
284 isym = isymbuf + ELF32_R_SYM (irel->r_info);
285 if (isym->st_shndx == SHN_UNDEF)
287 else if (isym->st_shndx == SHN_ABS)
289 else if (isym->st_shndx == SHN_COMMON)
292 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
294 return isym->st_value + BASEADDR (sym_sec);
577 Elf_Internal_Sym *isymbuf, *isym, *isymend;
603 isym = isymbuf + ELF32_R_SYM (irel->r_info);
604 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
606 if (isym->st_shndx == shndx)
609 bfd_vma symval = BASEADDR (sym_sec) + isym->st_value
662 isym = isymbuf + ELF32_R_SYM (irel->r_info);
663 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
671 bfd_vma symval = BASEADDR (sym_sec) + isym->st_value
752 for (isym = isymbuf; isym < isymend; isym++)
754 if (isym->st_shndx == shndx
755 && addr <= isym->st_value
756 && isym->st_value < endaddr)
757 isym->st_value += count;