Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_parse.y75 { $$ = n_cons (STRUCT_KW, $1, $3, $5);
81 { $$ = n_cons (UNION_KW, $1, $3, $5);
87 { $$ = n_cons (TYPEDEF_KW, 0, $2->n_m_name, $2);
97 { $$ = n_cons (L_MEMBER, $1, $2, $3);
114 adv_attr: IN_KW { $$ = n_cons (IN_KW); }
115 | OUT_KW { $$ = n_cons (OUT_KW); }
116 | OPERATION_KW LP arg RP { $$ = n_cons (OPERATION_KW, $3); }
117 | ALIGN_KW LP arg RP { $$ = n_cons (ALIGN_KW, $3); }
118 | STRING_KW { $$ = n_cons (STRING_KW); }
119 | FAKE_KW { $$ = n_cons (FAKE_KW); }
[all …]
H A Dndrgen.h204 extern struct node *n_cons(int, ...);
H A Dndr_lex.c501 n_cons(int label, ...) in n_cons() function