Home
last modified time | relevance | path

Searched refs:cth_typeoff (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/libctf/
H A Dctf-open.c354 fp->ctf_nvars = (hp->cth_typeoff - hp->cth_varoff) / sizeof (ctf_varent_t); in ctf_set_base()
405 hp->cth_typeoff = oldhp->cth_typeoff; in upgrade_header()
438 tbuf = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_typeoff); in upgrade_types_v1()
483 memcpy (ctf_base, fp->ctf_buf, cth->cth_typeoff); in upgrade_types_v1()
487 memset (ctf_base + cth->cth_typeoff, 0, cth->cth_stroff - cth->cth_typeoff in upgrade_types_v1()
492 assert (cth->cth_stroff >= cth->cth_typeoff); in upgrade_types_v1()
498 t2buf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff); in upgrade_types_v1()
705 tbuf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff); in init_types()
982 swap_thing (cth->cth_typeoff); in ctf_flip_header()
1225 flip_vars (buf + cth->cth_varoff, cth->cth_typeoff - cth->cth_varoff); in ctf_flip()
[all …]
H A Dctf-dump.c387 hp->cth_varoff, hp->cth_typeoff) < 0) in ctf_dump_header()
391 hp->cth_typeoff, hp->cth_stroff) < 0) in ctf_dump_header()
H A Dctf-serialize.c1022 hdr.cth_typeoff = hdr.cth_varoff + (nvars * sizeof (ctf_varent_t)); in ctf_serialize()
1023 hdr.cth_stroff = hdr.cth_typeoff + type_size; in ctf_serialize()
1062 assert (t == (unsigned char *) buf + sizeof (ctf_header_t) + hdr.cth_typeoff); in ctf_serialize()
/netbsd-src/external/gpl3/binutils.old/dist/libctf/
H A Dctf-open.c354 fp->ctf_nvars = (hp->cth_typeoff - hp->cth_varoff) / sizeof (ctf_varent_t); in ctf_set_base()
405 hp->cth_typeoff = oldhp->cth_typeoff; in upgrade_header()
438 tbuf = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_typeoff); in upgrade_types_v1()
483 memcpy (ctf_base, fp->ctf_buf, cth->cth_typeoff); in upgrade_types_v1()
487 memset (ctf_base + cth->cth_typeoff, 0, cth->cth_stroff - cth->cth_typeoff in upgrade_types_v1()
492 assert (cth->cth_stroff >= cth->cth_typeoff); in upgrade_types_v1()
498 t2buf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff); in upgrade_types_v1()
705 tbuf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff); in init_types()
982 swap_thing (cth->cth_typeoff); in ctf_flip_header()
1225 flip_vars (buf + cth->cth_varoff, cth->cth_typeoff - cth->cth_varoff); in ctf_flip()
[all …]
H A Dctf-dump.c387 hp->cth_varoff, hp->cth_typeoff) < 0) in ctf_dump_header()
391 hp->cth_typeoff, hp->cth_stroff) < 0) in ctf_dump_header()
H A Dctf-serialize.c1022 hdr.cth_typeoff = hdr.cth_varoff + (nvars * sizeof (ctf_varent_t)); in ctf_serialize()
1023 hdr.cth_stroff = hdr.cth_typeoff + type_size; in ctf_serialize()
1062 assert (t == (unsigned char *) buf + sizeof (ctf_header_t) + hdr.cth_typeoff); in ctf_serialize()
/netbsd-src/external/cddl/osnet/dist/tools/ctf/dump/
H A Ddump.c196 (void) printf(" cth_typeoff = %u\n", hp->cth_typeoff); in print_header()
316 v = (void *) (cd->cd_ctfdata + hp->cth_typeoff); in read_funcs()
329 if (hp->cth_typeoff >= cd->cd_ctflen) in read_funcs()
331 if (hp->cth_funcoff > hp->cth_typeoff) in read_funcs()
390 void *v = (void *) (cd->cd_ctfdata + hp->cth_typeoff); in read_types()
401 if (hp->cth_typeoff & 3) in read_types()
403 if (hp->cth_typeoff >= cd->cd_ctflen) in read_types()
407 if (hp->cth_typeoff > hp->cth_stroff) in read_types()
/netbsd-src/external/cddl/osnet/dist/common/ctf/
H A Dctf_open.c166 if (funcoff >= hp->cth_typeoff) { in init_symtab()
206 const ctf_type_t *tbuf = (const ctf_type_t *)(fp->ctf_buf + cth->cth_typeoff); in init_types()
605 hp.cth_typeoff = h1p->cth_typeoff; in ctf_bufopen()
618 hp.cth_funcoff > size || hp.cth_typeoff > size || in ctf_bufopen()
624 hp.cth_funcoff > hp.cth_typeoff || in ctf_bufopen()
625 hp.cth_typeoff > hp.cth_stroff) in ctf_bufopen()
629 (hp.cth_funcoff & 1) || (hp.cth_typeoff & 3)) in ctf_bufopen()
H A Dctf_create.c318 hdr.cth_stroff = hdr.cth_typeoff + size; in ctf_update()
/netbsd-src/external/cddl/osnet/dist/uts/common/sys/
H A Dctf.h126 uint_t cth_typeoff; /* offset of type section */ member
141 uint_t cth_typeoff; member
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dctf.h162 uint32_t cth_typeoff; /* Offset of type section. */ member
179 uint32_t cth_typeoff; /* Offset of type section. */ member
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dctf.h162 uint32_t cth_typeoff; /* Offset of type section. */ member
179 uint32_t cth_typeoff; /* Offset of type section. */ member
/netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/
H A Dctf.c742 h.cth_typeoff = ctf_buf_cur(buf); in ctf_gen()
757 SWAP_32(h.cth_typeoff); in ctf_gen()
791 caddr_t dptr = data + h->cth_typeoff; in count_types()
794 dptr = data + h->cth_typeoff; in count_types()
953 size_t bufsz = h->cth_typeoff - h->cth_funcoff; in resurrect_functions()
1021 caddr_t buf = ctfdata + h->cth_typeoff; in resurrect_types()
1022 size_t bufsz = h->cth_stroff - h->cth_typeoff; in resurrect_types()
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dctf.h159 uint32_t cth_typeoff; /* Offset of type section. */ member
/netbsd-src/external/cddl/osnet/dev/fbt/
H A Dfbt.c521 if (funcoff >= hp->cth_typeoff) { in fbt_ctfoff_init()
591 tbuf = (const ctf_type_t *) (ctfdata + hp->cth_typeoff); in fbt_typoff_init()
/netbsd-src/external/gpl3/binutils/dist/libctf/doc/
H A Dctf-spec.info355 uint32_t cth_typeoff;
409 0x28 ‘uint32_t cth_typeoff’ The offset of the type section, the core of CTF,
1421 * ctf_header_t, cth_typeoff: CTF header. (line 91)
1518 * cth_typeoff: CTF header. (line 91)
1641 * struct ctf_header, cth_typeoff: CTF header. (line 91)
H A Dctf-spec.texi415 uint32_t cth_typeoff;
510 @tab @code{uint32_t cth_typeoff}
511 @vindex cth_typeoff
512 @vindex struct ctf_header, cth_typeoff
513 @vindex ctf_header_t, cth_typeoff
/netbsd-src/external/gpl3/binutils.old/dist/libctf/doc/
H A Dctf-spec.texi415 uint32_t cth_typeoff;
510 @tab @code{uint32_t cth_typeoff}
511 @vindex cth_typeoff
512 @vindex struct ctf_header, cth_typeoff
513 @vindex ctf_header_t, cth_typeoff
H A Dctf-spec.info355 uint32_t cth_typeoff;
409 0x28 'uint32_t cth_typeoff' The offset of the type section, the core of CTF,
1421 * ctf_header_t, cth_typeoff: CTF header. (line 91)
1518 * cth_typeoff: CTF header. (line 91)
1641 * struct ctf_header, cth_typeoff: CTF header. (line 91)