Lines Matching refs:hdrsz
551 size_t size, hdrsz; in ctf_bufopen() local
589 hdrsz = sizeof (ctf_header_t); in ctf_bufopen()
606 hdrsz = sizeof (ctf_header_v1_t); in ctf_bufopen()
642 if ((base = ctf_data_alloc(size + hdrsz)) == MAP_FAILED) in ctf_bufopen()
645 bcopy(ctfsect->cts_data, base, hdrsz); in ctf_bufopen()
647 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
649 src = (uchar_t *)ctfsect->cts_data + hdrsz; in ctf_bufopen()
650 srclen = ctfsect->cts_size - hdrsz; in ctf_bufopen()
655 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
662 ctf_data_free(base, size + hdrsz); in ctf_bufopen()
666 ctf_data_protect(base, size + hdrsz); in ctf_bufopen()
670 buf = (uchar_t *)base + hdrsz; in ctf_bufopen()
714 fp->ctf_size = size + hdrsz; in ctf_bufopen()