Lines Matching refs:hdrsz
552 size_t size, hdrsz; in ctf_bufopen() local
591 hdrsz = sizeof (ctf_header_t); in ctf_bufopen()
608 hdrsz = sizeof (ctf_header_v1_t); in ctf_bufopen()
645 if ((base = ctf_data_alloc(size + hdrsz)) == MAP_FAILED) in ctf_bufopen()
648 bcopy(ctfsect->cts_data, base, hdrsz); in ctf_bufopen()
650 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
652 src = (uchar_t *)ctfsect->cts_data + hdrsz; in ctf_bufopen()
653 srclen = ctfsect->cts_size - hdrsz; in ctf_bufopen()
658 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
665 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
669 ctf_data_protect(base, size + hdrsz); in ctf_bufopen()
673 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
718 fp->ctf_size = size + hdrsz; in ctf_bufopen()