Searched defs:sym1 (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/rtld/sparc/
H A Dcommon_sparc.c63 check_regsyms(Sym *sym1, const char *name1, Sym *sym2, const char *name2) argument
65 if ((sym1->st_name == 0) && (sym2->st_name == 0))
68 if ((ELF_ST_BIND(sym1->st_info) == STB_LOCAL) ||
70 if (sym1->st_value == sym2->st_value)
75 if (sym1->st_value == sym2->st_value) {
77 if ((sym1->st_name == 0) || (sym2->st_name == 0))
83 if ((sym1->st_shndx == SHN_ABS) && (sym2->st_shndx == SHN_ABS))
121 const char *str, *sym1, *sym2; local
130 sym1 = (STRTAB(rp->rl_lmp) + rp->rl_sym->st_name);
133 if (check_regsyms(rp->rl_sym, sym1, symde
[all...]
/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dsym.c305 Sym *sym1, *sym2; local
311 sym1 = &symstate1->sym.data[symstate1->ndx];
320 if (ELF_ST_BIND(sym1->st_info) !=
326 if (sym1->st_info != sym2->st_info)
341 sym1->st_name, ELFEDIT_MSG_DEBUG, 0);
347 if (sym1->st_name != sym2->st_name)
353 if (sym1->st_other != sym2->st_other)
361 ndx1 = sym1->st_shndx;
383 if (sym1->st_size != sym2->st_size)
388 if (ELF_ST_TYPE(sym1
[all...]
/illumos-gate/usr/src/lib/libproc/common/
H A DPsymtab.c2151 sym_prefer(GElf_Sym *sym1, char *name1, GElf_Sym *sym2, char *name2) argument
2156 if (sym1 == NULL)
2159 return (sym1);
2164 return (byaddr_cmp_common(sym1, name1, sym2, name2) <= 0 ? sym1 : sym2);
2397 GElf_Sym sym1, *sym1p = NULL; local
2422 if ((sym1p = sym_by_addr(&fptr->file_symtab, addr, &sym1, &i1)) != NULL)
2423 name1 = fptr->file_symtab.sym_strs + sym1.st_name;
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dsyms.c1788 Sym *sym1, *sym2; local
1800 sym1 = sdp1->sd_sym;
1810 if (sym1->st_shndx > sym2->st_shndx)
1812 if (sym1->st_shndx < sym2->st_shndx)
1818 if (sym1->st_value > sym2->st_value)
1820 if (sym1->st_value < sym2->st_value)
1823 bind1 = ELF_ST_BIND(sym1->st_info);
2874 Sym *sym1 = sdp1->sd_sym; local
2875 uchar_t bind1 = ELF_ST_BIND(sym1->st_info);
2899 (sym1
[all...]

Completed in 93 milliseconds