Home | History | Annotate | Download | only in elf2aout

Lines Matching defs:outbuf

460 	struct nlist outbuf[64];
468 memset(outbuf, 0, sizeof outbuf);
534 outbuf[i].n_un.n_strx = nsp - newstrings + 4;
543 outbuf[i].n_type = N_FN;
545 outbuf[i].n_type = get_type(inbuf[i].st_shndx);
547 outbuf[i].n_type |= N_EXT;
549 outbuf[i].n_value = inbuf[i].st_value;
551 outbuf[i].n_un.n_strx = bswap32(outbuf[i].n_un.n_strx);
552 outbuf[i].n_desc = bswap16(outbuf[i].n_desc);
553 outbuf[i].n_value = bswap32(outbuf[i].n_value);
557 if ((i = write(out, outbuf, (size_t)cur * sizeof(struct nlist)))