Home
last modified time | relevance | path

Searched refs:ctf_typemax (Results 1 – 4 of 4) sorted by relevance

/onnv-gate/usr/src/common/ctf/
H A Dctf_open.c226 for (tp = tbuf; tp < tend; fp->ctf_typemax++) { in init_types()
330 fp->ctf_txlate = ctf_alloc(sizeof (uint_t) * (fp->ctf_typemax + 1)); in init_types()
331 fp->ctf_ptrtab = ctf_alloc(sizeof (ushort_t) * (fp->ctf_typemax + 1)); in init_types()
339 bzero(fp->ctf_txlate, sizeof (uint_t) * (fp->ctf_typemax + 1)); in init_types()
340 bzero(fp->ctf_ptrtab, sizeof (ushort_t) * (fp->ctf_typemax + 1)); in init_types()
482 CTF_TYPE_TO_INDEX(tp->ctt_type) <= fp->ctf_typemax) in init_types()
505 ctf_dprintf("%lu total types processed\n", fp->ctf_typemax); in init_types()
520 for (id = 1; id <= fp->ctf_typemax; id++) { in init_types()
527 CTF_TYPE_TO_INDEX(tp->ctt_type) <= fp->ctf_typemax) in init_types()
855 sizeof (uint_t) * (fp->ctf_typemax + 1)); in ctf_close()
[all …]
H A Dctf_impl.h196 ulong_t ctf_typemax; /* maximum valid type ID number */ member
H A Dctf_lookup.c227 if (type > 0 && type <= fp->ctf_typemax) { in ctf_lookup_by_id()
H A Dctf_types.c149 ctf_id_t id, max = fp->ctf_typemax; in ctf_type_iter()