Home
last modified time | relevance | path

Searched refs:idwidth (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/cddl/dev/fbt/
H A Dfbt.c369 size_t idwidth; in fbt_ctfoff_init() local
390 idwidth = hp->cth_version == CTF_VERSION_2 ? 2 : 4; in fbt_ctfoff_init()
407 objtoff += idwidth; in fbt_ctfoff_init()
419 memcpy(&info, ctfdata + funcoff, idwidth); in fbt_ctfoff_init()
434 funcoff += idwidth; in fbt_ctfoff_init()
436 funcoff += idwidth * (vlen + 2); in fbt_ctfoff_init()
548 size_t idwidth; in fbt_typoff_init() local
559 idwidth = version == CTF_VERSION_2 ? 2 : 4; in fbt_typoff_init()
589 vbytes = roundup2(idwidth * vlen, sizeof(uint32_t)); in fbt_typoff_init()
677 vbytes = roundup2(idwidth * vlen, sizeof(uint32_t)); in fbt_typoff_init()
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c805 size_t idwidth; in count_types() local
808 idwidth = version == CTF_VERSION_2 ? 2 : 4; in count_types()
831 dptr += idwidth * vlen; in count_types()
941 size_t idwidth; in resurrect_objects() local
943 idwidth = h->cth_version == CTF_VERSION_2 ? 2 : 4; in resurrect_objects()
946 for (dptr = buf; dptr < buf + bufsz; dptr += idwidth) { in resurrect_objects()
949 memcpy(&id, (void *) dptr, idwidth); in resurrect_objects()
987 size_t idwidth; in resurrect_functions() local
993 idwidth = h->cth_version == CTF_VERSION_2 ? 2 : 4; in resurrect_functions()
1000 memcpy(&info, (void *) dptr, idwidth); in resurrect_functions()
[all …]
/freebsd/sys/ddb/
H A Ddb_ctf.c56 const size_t idwidth = 4; in sym_to_objtoff() local
87 objtoff += idwidth; in sym_to_objtoff()