Home
last modified time | relevance | path

Searched refs:dd_attr (Results 1 – 3 of 3) sorted by relevance

/titanic_44/usr/src/lib/libdtrace/common/
H A Ddt_decl.c46 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
52 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG | in dt_decl_check()
59 (ddp->dd_attr & (DT_DA_SIGNED | DT_DA_UNSIGNED))) { in dt_decl_check()
65 (ddp->dd_attr & (DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
83 ddp->dd_attr = 0; in dt_decl_alloc()
266 ddp->dd_attr = attr; in dt_decl_attr()
270 if ((attr & DT_DA_LONG) && (ddp->dd_attr & DT_DA_LONGLONG)) { in dt_decl_attr()
275 if ((attr & DT_DA_SHORT) && (ddp->dd_attr & DT_DA_SHORT)) { in dt_decl_attr()
280 if ((attr & DT_DA_SIGNED) && (ddp->dd_attr & DT_DA_SIGNED)) { in dt_decl_attr()
285 if ((attr & DT_DA_UNSIGNED) && (ddp->dd_attr & DT_DA_UNSIGNED)) { in dt_decl_attr()
[all …]
H A Ddt_decl.h47 ushort_t dd_attr; /* attributes (DT_DA_* flags) */ member
H A Ddt_grammar.y775 lparen: DT_TOK_LPAR { dt_decl_top()->dd_attr |= DT_DA_PAREN; }