HomeSort by: relevance | last modified time | path
    Searched defs:newstrings (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/elf2aout/
elf2aout.c 463 char *newstrings, *nsp; local in function:translate_syms
481 newstrings = malloc(newstringsize);
482 if (newstrings == NULL)
485 nsp = newstrings;
514 off = (size_t)(nsp - newstrings);
524 nns = realloc(newstrings, newstringsize);
527 newstrings = nns;
528 nsp = newstrings + off;
534 outbuf[i].n_un.n_strx = nsp - newstrings + 4;
570 if (write(out, newstrings, newstringsize) != (ssize_t)newstringsize
    [all...]
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 756 char *newstrings, *nsp; local in function:translate_syms
779 newstrings = malloc(stringsize);
780 if (newstrings == NULL)
783 nsp = newstrings;
794 if (nsp + namelen > newstrings + stringsize)
798 ecoffp->ecoff_syms[idx].es_strindex = nsp - newstrings;
813 ecoffp->stringtab = newstrings;
814 ecoffp->stringsize = nsp - newstrings;

Completed in 38 milliseconds