Lines Matching defs:vlen
345 uint_t vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
361 size += sizeof (ushort_t) * (vlen + (vlen & 1));
366 size += sizeof (ctf_member_t) * vlen;
368 size += sizeof (ctf_lmember_t) * vlen;
371 size += sizeof (ctf_enum_t) * vlen;
499 uint_t vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
554 for (argc = 0; argc < vlen; argc++)
557 if (vlen & 1)
1126 uint_t vlen;
1135 vlen = ctc->ctc_argc;
1137 vlen++; /* add trailing zero to indicate varargs (see below) */
1139 if (vlen > CTF_MAX_VLEN)
1154 if (vlen != 0 && (vdat = ctf_alloc(sizeof (ctf_id_t) * vlen)) == NULL)
1158 ctf_free(vdat, sizeof (ctf_id_t) * vlen);
1162 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(CTF_K_FUNCTION, flag, vlen);
1171 vdat[vlen - 1] = 0; /* add trailing zero to indicate varargs */
1370 uint_t kind, vlen, root;
1384 vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
1389 if (vlen == CTF_MAX_VLEN)
1413 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, root, vlen + 1);
1431 uint_t kind, vlen, root;
1443 vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
1448 if (vlen == CTF_MAX_VLEN)
1515 if (kind == CTF_K_STRUCT && vlen != 0) {
1561 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, root, vlen + 1);
1688 uint_t kind, flag, vlen;
1713 vlen = LCTF_INFO_VLEN(src_fp, tp->ctt_info);
1898 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, flag, vlen);
2183 uint_t kind, vlen;
2192 vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
2194 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, vis, vlen);