Home
last modified time | relevance | path

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

/freebsd-9-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_decl.c48 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
54 (ddp->dd_attr & (DT_DA_SHORT | DT_DA_LONG | DT_DA_LONGLONG | in dt_decl_check()
61 (ddp->dd_attr & (DT_DA_SIGNED | DT_DA_UNSIGNED))) { in dt_decl_check()
67 (ddp->dd_attr & (DT_DA_LONG | DT_DA_LONGLONG))) { in dt_decl_check()
85 ddp->dd_attr = 0; in dt_decl_alloc()
268 ddp->dd_attr = attr; in dt_decl_attr()
272 if (attr == DT_DA_LONG && (ddp->dd_attr & DT_DA_LONG)) { in dt_decl_attr()
273 ddp->dd_attr &= ~DT_DA_LONG; in dt_decl_attr()
277 ddp->dd_attr |= attr; in dt_decl_attr()
440 while (pdp->dd_next != NULL && !(pdp->dd_next->dd_attr & DT_DA_PAREN)) in dt_decl_func()
[all …]
Ddt_decl.h45 ushort_t dd_attr; /* attributes (DT_DA_* flags) */ member
Ddt_grammar.y759 lparen: DT_TOK_LPAR { dt_decl_top()->dd_attr |= DT_DA_PAREN; }