Searched refs:ssym (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/iconv/
H A Dcharmap.c379 * This is called by the parser with start/end symbol strings (ssym, esym),
383 add_charmap_range(char *ssym, char *esym, char *mbs) argument
401 ls = strlen(ssym);
404 if (((si = strcspn(ssym, digits)) == 0) || (si == ls) ||
405 (strncmp(ssym, esym, si) != 0) ||
406 (strspn(ssym + si, digits) != (ls - si)) ||
408 ((sn = atoi(ssym + si)) > ((en = atoi(esym + si))))) {
413 ssym[si] = 0;
416 (void) asprintf(&nn, "%s%0*u", ssym, ls - si, i);
425 free(ssym);
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dbootinfo32.c144 vm_offset_t ssym, esym; local
238 ssym = esym = 0;
241 ssym = *((vm_offset_t *)&(md->md_data));
245 if (ssym == 0 || esym == 0)
246 ssym = esym = 0; /* sanity */
265 bi.bi_symtab = ssym; /* XXX this is only the primary kernel symtab */
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Dbootinfo32.c144 vm_offset_t ssym, esym; local
217 ssym = esym = 0;
220 ssym = *((vm_offset_t *)&(md->md_data));
224 if (ssym == 0 || esym == 0)
225 ssym = esym = 0; /* sanity */
246 bi.bi_symtab = ssym; /* XXX this is only the primary kernel symtab */
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Dbootinfo.c216 vm_offset_t addr, ssym, esym; local
236 ssym = (md != NULL) ? *((vm_offset_t *)&(md->md_data)) : 0;
239 if (ssym != 0 && esym != 0) {
240 bi.bi_symtab = ssym;
/illumos-gate/usr/src/tools/ctf/cvt/
H A Doutput.c359 GElf_Sym ssym; local
399 &ssym, &smatch.iim_file)) {
405 smatch.iim_name = (char *)strdata->d_buf + ssym.st_name;
406 smatch.iim_bind = GELF_ST_BIND(ssym.st_info);
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dload_elf.c309 Elf_Addr ssym, esym; local
574 ssym = lastaddr;
608 lastaddr = ssym;
609 ssym = 0;
616 lastaddr = ssym;
617 ssym = 0;
620 /* Reset offsets relative to ssym */
633 file_addmetadata(fp, MODINFOMD_SSYM, sizeof(ssym), &ssym);
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dsyms.c2790 Sym *ssym; local
2801 ssym = ssdp->sd_sym;
2803 if (ssym->st_shndx == SHN_UNDEF)
2806 if ((ssym->st_shndx != wsym->st_shndx) ||
2807 (ssym->st_value != wsym->st_value))
2810 if ((ssym->st_size != wsym->st_size) ||
2812 (ELF_ST_BIND(ssym->st_info) == STB_WEAK))

Completed in 93 milliseconds