Home
last modified time | relevance | path

Searched refs:a_syms (Results 1 – 14 of 14) sorted by relevance

/trueos/sys/boot/i386/gptboot/
HDgptboot.c282 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms)); in load()
283 p += sizeof(hdr.ex.a_syms); in load()
284 if (hdr.ex.a_syms) { in load()
285 if (xfsread(ino, p, hdr.ex.a_syms)) in load()
287 p += hdr.ex.a_syms; in load()
/trueos/usr.bin/gprof/
HDaout.c101 fseek(nfile, (long)(N_SYMOFF(xbuf) + xbuf.a_syms), 0); in getstrtab()
124 for (i = xbuf.a_syms; i > 0; i -= sizeof(struct nlist)) { in getsymtab()
143 for (i = xbuf.a_syms; i > 0; i -= sizeof(struct nlist)) { in getsymtab()
/trueos/contrib/binutils/gas/config/
HDaout_gnu.h81 unsigned char a_syms[4]; member
98 unsigned a_syms; /* length of symbol table data in file, in bytes */ member
204 #define N_STROFF(x) ( N_SYMOFF(x) + (x).a_syms )
/trueos/sys/boot/i386/zfsboot/
HDzfsboot.c644 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms)); in load()
645 p += sizeof(hdr.ex.a_syms); in load()
646 if (hdr.ex.a_syms) { in load()
647 if (xfsread(&dn, &off, p, hdr.ex.a_syms)) in load()
649 p += hdr.ex.a_syms; in load()
/trueos/sys/sys/
HDimgact_aout.h104 #define N_STROFF(ex) (N_SYMOFF(ex) + le32toh((ex).a_syms))
117 uint32_t a_syms; /* symbol table size */ member
/trueos/usr.bin/ldd/
HDsods.c227 printf(" a_syms = 0x%lx\n", (long)ex->a_syms); in dump_file()
241 sym_count = ex->a_syms / sizeof sym_base[0]; in dump_file()
242 assert(sym_count * sizeof sym_base[0] == ex->a_syms); in dump_file()
/trueos/contrib/gdb/include/
HDbout.h97 #define N_STROFF(x) ( N_SYMOFF(x) + (x).a_syms )
/trueos/usr.sbin/crunch/crunchide/
HDexec_aout.c141 nsyms = hdrp->a_syms / sizeof(struct nlist); in hide_aout()
/trueos/usr.bin/elf2aout/
HDelf2aout.c53 u_int32_t a_syms; member
/trueos/contrib/binutils/bfd/
HDlibaout.h226 bfd_vma a_syms; /* Length of symbol table data in file. */ member
632 execp->a_syms = bfd_get_symcount (abfd) * EXTERNAL_NLIST_SIZE; \
HDaoutx.h387 execp->a_syms = GET_WORD (abfd, bytes->e_syms); in NAME()
419 PUT_WORD (abfd, execp->a_syms , bytes->e_syms); in NAME()
490 if (execp->a_syms) in NAME()
522 bfd_get_symcount (abfd) = execp->a_syms / sizeof (struct external_nlist); in NAME()
1295 count = exec_hdr (abfd)->a_syms / EXTERNAL_NLIST_SIZE; in aout_get_external_symbols()
1299 exec_hdr (abfd)->a_syms, in aout_get_external_symbols()
1311 amt = exec_hdr (abfd)->a_syms; in aout_get_external_symbols()
1325 && exec_hdr (abfd)->a_syms != 0) in aout_get_external_symbols()
5543 exec_hdr (abfd)->a_syms = abfd->symcount * EXTERNAL_NLIST_SIZE; in NAME()
5544 obj_str_filepos (abfd) = obj_sym_filepos (abfd) + exec_hdr (abfd)->a_syms; in NAME()
HDbout.c88 execp->a_syms = GET_WORD (abfd, bytes->e_syms); in bout_swap_exec_header_in()
113 PUT_WORD (abfd, execp->a_syms , bytes->e_syms); in bout_swap_exec_header_out()
407 exec_hdr (abfd)->a_syms = bfd_get_symcount (abfd) * 12; in b_out_write_object_contents()
/trueos/contrib/binutils/include/aout/
HDaout64.h253 #define N_STROFF(x) (N_SYMOFF (x) + (x).a_syms)
/trueos/lib/libc/gen/
HDnlist.c151 symsize = exec->a_syms;