Home | History | Annotate | Download | only in bfd

Lines Matching defs:isym

1566 	  Elf_Internal_Sym *isym;
1573 isym = &isymbuf[idx];
1574 if (isym->st_shndx == SHN_UNDEF)
1576 else if (isym->st_shndx == SHN_ABS)
1578 else if (isym->st_shndx == SHN_COMMON)
1581 tsec = bfd_section_from_elf_index (ibfd, isym->st_shndx);
1585 + isym->st_value);
1648 Elf_Internal_Sym * isym;
1709 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
1710 isymend = isym + symtab_hdr->sh_info;
1712 for (; isym < isymend; isym++)
1716 if (isym->st_shndx == sec_shndx
1717 && isym->st_value > addr
1718 && isym->st_value < toaddr)
1719 isym->st_value -= count;
1724 if (isym->st_shndx == sec_shndx
1725 && isym->st_value < addr
1726 && isym->st_value + isym->st_size > addr
1727 && isym->st_value + isym->st_size < toaddr)
1728 isym->st_size -= count;
1848 Elf_Internal_Sym *isym;
1851 isym = intsyms + ELF32_R_SYM (rel->r_info);
1853 if (isym->st_shndx == SHN_UNDEF)
1855 else if (isym->st_shndx == SHN_ABS)
1857 else if (isym->st_shndx == SHN_COMMON)
1861 isym->st_shndx);
1864 symval = isym->st_value;
1869 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)