Lines Matching refs:hdrsz
550 size_t size, hdrsz; in ctf_bufopen() local
588 hdrsz = sizeof (ctf_header_t); in ctf_bufopen()
605 hdrsz = sizeof (ctf_header_v1_t); in ctf_bufopen()
641 if ((base = ctf_data_alloc(size + hdrsz)) == MAP_FAILED) in ctf_bufopen()
644 bcopy(ctfsect->cts_data, base, hdrsz); in ctf_bufopen()
646 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
648 src = (uchar_t *)ctfsect->cts_data + hdrsz; in ctf_bufopen()
649 srclen = ctfsect->cts_size - hdrsz; in ctf_bufopen()
654 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
661 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
665 ctf_data_protect(base, size + hdrsz); in ctf_bufopen()
669 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
713 fp->ctf_size = size + hdrsz; in ctf_bufopen()