Lines Matching defs:enc
343 ctf_encoding_t enc = { CTF_INT_SIGNED, 0, 0 };
345 "void", &enc);
365 ctf_encoding_t enc;
367 enc.cte_format = CTF_INT_SIGNED;
368 enc.cte_offset = 0;
370 enc.cte_bits = cup->cu_ptrsz * 8;
372 "long", &enc);
807 ctf_dwarf_float_base(ctf_cu_t *cup, Dwarf_Signed type, ctf_encoding_t *enc)
834 if (ent->cdfe_size * mult * 8 == enc->cte_bits) {
835 enc->cte_format = ent->cdfe_enc[col];
842 type, enc->cte_bits);
848 ctf_encoding_t *enc)
860 enc->cte_format = 0;
864 enc->cte_format = CTF_INT_CHAR;
868 enc->cte_format = CTF_INT_SIGNED;
872 enc->cte_format = CTF_INT_SIGNED | CTF_INT_CHAR;
876 enc->cte_format = CTF_INT_SIGNED | CTF_INT_BOOL;
884 if ((ret = ctf_dwarf_float_base(cup, type, enc)) != 0)
902 ctf_dwarf_parse_base(const char *name, int *kindp, ctf_encoding_t *enc,
956 enc->cte_format = CTF_INT_CHAR;
958 enc->cte_format = 0;
961 enc->cte_format |= CTF_INT_SIGNED;
983 ctf_encoding_t enc;
994 bzero(&enc, sizeof (ctf_encoding_t));
995 enc.cte_bits = sz * 8;
996 if ((ret = ctf_dwarf_parse_base(name, &kind, &enc, &nname)) == 0) {
1003 if ((ret = ctf_dwarf_dwarf_base(cup, die, &kind, &enc)) != 0)
1007 id = ctf_add_encoded(cup->cu_ctfp, isroot, name, &enc, kind);