Searched refs:CTF_INT_SIGNED (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_open.c557 { "void", { CTF_INT_SIGNED, 0, 0 }, CTF_K_INTEGER },
558 { "signed", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
560 { "char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
561 { "short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
562 { "int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
563 { "long", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
564 { "long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
565 { "signed char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
566 { "signed short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
567 { "signed int", { CTF_INT_SIGNED,
[all...]
H A Ddt_parser.h247 (((e).cte_format & (CTF_INT_CHAR | CTF_INT_SIGNED)) == \
248 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
H A Ddt_print.c89 (((e).cte_format & (CTF_INT_CHAR | CTF_INT_SIGNED)) == \
90 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
H A Ddt_parser.c383 lrank = le.cte_bits + ((le.cte_format & CTF_INT_SIGNED) == 0);
384 rrank = re.cte_bits + ((re.cte_format & CTF_INT_SIGNED) == 0);
695 if (e.cte_format & CTF_INT_SIGNED)
H A Ddt_consume.c1664 if ((cte.cte_format & CTF_INT_SIGNED) != 0)
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dctf.h285 #define CTF_INT_SIGNED 0x01 /* integer is signed (otherwise unsigned) */ macro
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c136 if (encoding == 0 || (encoding & ~(CTF_INT_SIGNED | CTF_INT_CHAR |
141 if (encoding & CTF_INT_SIGNED)
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c342 encoding |= CTF_INT_SIGNED;
1079 ip->intr_signed = (encoding & CTF_INT_SIGNED) ? 1 : 0;

Completed in 201 milliseconds