Searched defs:sym2 (Results 1 - 5 of 5) 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))
69 (ELF_ST_BIND(sym2->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
131 sym2 = (STRTAB(lmp) + symdef->st_name);
133 if (check_regsyms(rp->rl_sym, sym1, symdef, sym2)
147 sym1, NAME(lmp), sym2); local
153 sym1, NAME(lmp), sym2); local
[all...]
/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dsym.c305 Sym *sym1, *sym2; local
312 sym2 = &symstate2->sym.data[symstate2->ndx];
321 ELF_ST_BIND(sym2->st_info))
326 if (sym1->st_info != sym2->st_info)
343 sym2->st_name, ELFEDIT_MSG_DEBUG, 0);
347 if (sym1->st_name != sym2->st_name)
353 if (sym1->st_other != sym2->st_other)
369 ndx2 = sym2->st_shndx;
383 if (sym1->st_size != sym2->st_size)
389 ELF_ST_TYPE(sym2
[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
2157 return (sym2);
2158 if (sym2 == NULL)
2164 return (byaddr_cmp_common(sym1, name1, sym2, name2) <= 0 ? sym1 : sym2);
2398 GElf_Sym sym2, *sym2p = NULL; local
2424 if ((sym2p = sym_by_addr(&fptr->file_dynsym, addr, &sym2, &i2)) != NULL)
2425 name2 = fptr->file_dynsym.sym_strs + sym2.st_name;
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dsyms.c1788 Sym *sym1, *sym2; local
1801 sym2 = sdp2->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)
1824 bind2 = ELF_ST_BIND(sym2->st_info);
2893 Sym *sym2 = sdp2->sd_sym; local
2895 ELF_ST_BIND(sym2->st_info);
2899 (sym1->st_value != sym2
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dtypegraph.c1090 GElf_Sym sym2; local
1105 &sym2) != -1) {
1106 nsizes_big = sym2.st_size / sizeof (int);
1120 mdb_vread(&tg_sizes[nsizes_reg], sym2.st_size,
1121 (uintptr_t)sym2.st_value) == -1) {

Completed in 99 milliseconds