Home
last modified time | relevance | path

Searched refs:CTF_INT_SIGNED (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_open.c553 { "void", { CTF_INT_SIGNED, 0, 0 }, CTF_K_INTEGER },
554 { "signed", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
556 { "char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
557 { "short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
558 { "int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
559 { "long", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
560 { "long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
561 { "signed char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
562 { "signed short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
563 { "signed int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
[all …]
Ddt_parser.h261 (((e).cte_format & (CTF_INT_CHAR | CTF_INT_SIGNED)) == \
262 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
Ddt_print.c89 (((e).cte_format & (CTF_INT_CHAR | CTF_INT_SIGNED)) == \
90 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
Ddt_parser.c383 lrank = le.cte_bits + ((le.cte_format & CTF_INT_SIGNED) == 0); in dt_type_promote()
384 rrank = re.cte_bits + ((re.cte_format & CTF_INT_SIGNED) == 0); in dt_type_promote()
695 if (e.cte_format & CTF_INT_SIGNED) in dt_node_type_assign()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
Dctf.h285 #define CTF_INT_SIGNED 0x01 /* integer is signed (otherwise unsigned) */ macro
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/dump/
Ddump.c135 if (encoding == 0 || (encoding & ~(CTF_INT_SIGNED | CTF_INT_CHAR | in int_encoding_to_str()
140 if (encoding & CTF_INT_SIGNED) in int_encoding_to_str()
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
Dctf.c340 encoding |= CTF_INT_SIGNED; in write_type()
1075 ip->intr_signed = (encoding & CTF_INT_SIGNED) ? 1 : 0; in resurrect_types()