Lines Matching defs:cte
445 ctfdump_intenc_name(ctf_encoding_t *cte, char *buf, int len)
450 if (cte->cte_format == 0 || (cte->cte_format &
453 (void) snprintf(buf, len, "0x%x", cte->cte_format);
457 if (cte->cte_format & CTF_INT_SIGNED) {
463 if (cte->cte_format & CTF_INT_CHAR) {
469 if (cte->cte_format & CTF_INT_BOOL) {
475 if (cte->cte_format & CTF_INT_VARARGS) {
511 ctf_encoding_t cte;
536 if (ctf_type_encoding(g_fp, id, &cte) == CTF_ERR)
539 ctfdump_intenc_name(&cte, ienc, sizeof (ienc));
542 name, ienc, cte.cte_offset, cte.cte_bits);
545 if (ctf_type_encoding(g_fp, id, &cte) == CTF_ERR)
548 if (cte.cte_format < 1 || cte.cte_format > 12)
551 encn = ctfdump_fpenc[cte.cte_format];
553 "bits=%u", name, encn, cte.cte_offset, cte.cte_bits);