HomeSort by: relevance | last modified time | path
    Searched refs:symhdrp (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/gen/
nlist_ecoff.c 69 const struct ecoff_symhdr *symhdrp; local in function:__fdnlist_ecoff
121 if ((symhdroff + sizeof *symhdrp) > mappedsize ||
122 sizeof *symhdrp != symhdrsize)
124 symhdrp = (const void *)&mappedfile[symhdroff];
126 nesyms = symhdrp->esymMax;
127 if (check(symhdrp->cbExtOffset, nesyms * sizeof *esyms))
129 esyms = (const void *)&mappedfile[symhdrp->cbExtOffset];
130 extstroff = symhdrp->cbSsExtOffset;
  /src/usr.sbin/kvm_mkdb/
nlist_ecoff.c 85 struct ecoff_symhdr *symhdrp; local in function:create_knlist_ecoff
148 if (check(symhdroff, sizeof *symhdrp) || sizeof *symhdrp != symhdrsize)
150 symhdrp = (struct ecoff_symhdr *)&mappedfile[symhdroff];
152 nesyms = symhdrp->esymMax;
153 if (check(symhdrp->cbExtOffset, nesyms * sizeof *esyms))
155 esyms = (struct ecoff_extsym *)&mappedfile[symhdrp->cbExtOffset];
156 extrstroff = symhdrp->cbSsExtOffset;
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 590 struct ecoff32_symhdr *symhdrp, int32_t nesyms,
601 memset(symhdrp, 0, sizeof(*symhdrp));
602 symhdrp->esymMax = nesyms;
603 symhdrp->magic = 0x7009;/* XXX */
604 symhdrp->cbExtOffset = extsymoff;
605 symhdrp->cbSsExtOffset = extstroff;
607 symhdrp->issExtMax = strsize;
611 sizeof(*symhdrp), strsize,
615 bswap32_region(&symhdrp->ilineMax
    [all...]

Completed in 14 milliseconds