Home
last modified time | relevance | path

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

/freebsd-12-stable/stand/i386/isoboot/
Disoboot.c367 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms)); in load()
368 p += sizeof(hdr.ex.a_syms); in load()
369 if (hdr.ex.a_syms) { in load()
370 if (xfsread(ino, p, hdr.ex.a_syms)) in load()
372 p += hdr.ex.a_syms; in load()
/freebsd-12-stable/usr.bin/gprof/
Daout.c103 fseek(nfile, (long)(N_SYMOFF(xbuf) + xbuf.a_syms), 0); in getstrtab()
126 for (i = xbuf.a_syms; i > 0; i -= sizeof(struct nlist)) { in getsymtab()
145 for (i = xbuf.a_syms; i > 0; i -= sizeof(struct nlist)) { in getsymtab()
/freebsd-12-stable/stand/i386/zfsboot/
Dzfsboot.c373 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms)); in load()
374 p += sizeof(hdr.ex.a_syms); in load()
375 if (hdr.ex.a_syms) { in load()
376 size = hdr.ex.a_syms; in load()
377 if (read(fd, p, hdr.ex.a_syms) != size) { in load()
381 p += hdr.ex.a_syms; in load()
/freebsd-12-stable/contrib/binutils/gas/config/
Daout_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 )
/freebsd-12-stable/stand/i386/gptboot/
Dgptboot.c428 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms)); in load()
429 p += sizeof(hdr.ex.a_syms); in load()
430 if (hdr.ex.a_syms) { in load()
431 if (xfsread(ino, p, hdr.ex.a_syms)) in load()
433 p += hdr.ex.a_syms; in load()
/freebsd-12-stable/sys/sys/
Dimgact_aout.h106 #define N_STROFF(ex) (N_SYMOFF(ex) + le32toh((ex).a_syms))
119 uint32_t a_syms; /* symbol table size */ member
/freebsd-12-stable/usr.bin/ldd/
Dsods.c229 printf(" a_syms = 0x%lx\n", (long)ex->a_syms); in dump_file()
243 sym_count = ex->a_syms / sizeof sym_base[0]; in dump_file()
244 assert(sym_count * sizeof sym_base[0] == ex->a_syms); in dump_file()
/freebsd-12-stable/contrib/gdb/include/
Dbout.h97 #define N_STROFF(x) ( N_SYMOFF(x) + (x).a_syms )
/freebsd-12-stable/usr.bin/elf2aout/
Delf2aout.c55 u_int32_t a_syms; member
/freebsd-12-stable/contrib/binutils/bfd/
Dlibaout.h226 bfd_vma a_syms; /* Length of symbol table data in file. */ member
632 execp->a_syms = bfd_get_symcount (abfd) * EXTERNAL_NLIST_SIZE; \
Daoutx.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()
Dbout.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()
/freebsd-12-stable/contrib/binutils/include/aout/
Daout64.h253 #define N_STROFF(x) (N_SYMOFF (x) + (x).a_syms)
/freebsd-12-stable/lib/libc/gen/
Dnlist.c150 symsize = exec->a_syms; in __aout_fdnlist()