Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_decl.c49 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
55 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG | in dt_decl_check()
62 (ddp->dd_attr & (DT_DA_SIGNED | DT_DA_UNSIGNED))) { in dt_decl_check()
68 (ddp->dd_attr & (DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
86 ddp->dd_attr = 0; in dt_decl_alloc()
269 ddp->dd_attr = attr; in dt_decl_attr()
273 if (attr == DT_DA_LONG && (ddp->dd_attr & DT_DA_LONG)) { in dt_decl_attr()
274 ddp->dd_attr &= ~DT_DA_LONG; in dt_decl_attr()
278 ddp->dd_attr |= attr; in dt_decl_attr()
441 while (pdp->dd_next != NULL && !(pdp->dd_next->dd_attr & DT_DA_PAREN)) in dt_decl_func()
[all …]
H A Ddt_decl.h47 ushort_t dd_attr; /* attributes (DT_DA_* flags) */ member
H A Ddt_grammar.y787 lparen: DT_TOK_LPAR { dt_decl_top()->dd_attr |= DT_DA_PAREN; }