Home | History | Annotate | Download | only in bfd

Lines Matching defs:isym

1403 	  Elf_Internal_Sym *isym;
1410 isym = &isymbuf[idx];
1411 if (isym->st_shndx == SHN_UNDEF)
1413 else if (isym->st_shndx == SHN_ABS)
1415 else if (isym->st_shndx == SHN_COMMON)
1418 tsec = bfd_section_from_elf_index (ibfd, isym->st_shndx);
1422 + isym->st_value);
1485 Elf_Internal_Sym * isym;
1546 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
1547 isymend = isym + symtab_hdr->sh_info;
1549 for (; isym < isymend; isym++)
1553 if (isym->st_shndx == sec_shndx
1554 && isym->st_value > addr
1555 && isym->st_value < toaddr)
1556 isym->st_value -= count;
1561 if (isym->st_shndx == sec_shndx
1562 && isym->st_value < addr
1563 && isym->st_value + isym->st_size > addr
1564 && isym->st_value + isym->st_size < toaddr)
1565 isym->st_size -= count;
1686 Elf_Internal_Sym *isym;
1689 isym = intsyms + ELF32_R_SYM (rel->r_info);
1691 if (isym->st_shndx == SHN_UNDEF)
1693 else if (isym->st_shndx == SHN_ABS)
1695 else if (isym->st_shndx == SHN_COMMON)
1699 isym->st_shndx);
1702 symval = isym->st_value;
1707 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)