Home
last modified time | relevance | path

Searched refs:plhs (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/byacc/
HDreader.c50 static bucket **plhs; variable
1596 plhs = TMALLOC(bucket *, maxrules); in initialize_grammar()
1597 NO_SPACE(plhs); in initialize_grammar()
1599 plhs[0] = 0; in initialize_grammar()
1600 plhs[1] = 0; in initialize_grammar()
1601 plhs[2] = 0; in initialize_grammar()
1631 plhs = TREALLOC(bucket *, plhs, maxrules); in expand_rules()
1632 NO_SPACE(plhs); in expand_rules()
1879 for (i = plhs[nrules]->args - 1; i >= 0; i--) in compile_arg()
1880 if (arg == plhs[nrules]->argnames[i]) in compile_arg()
[all …]
/NextBSD/contrib/gcclibs/libcpp/
HDmacro.c439 paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs) in paste_tokens() argument
445 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1; in paste_tokens()
447 end = lhsend = cpp_spell_token (pfile, *plhs, buf, false); in paste_tokens()
453 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ) in paste_tokens()
474 *lhs = **plhs; in paste_tokens()
475 *plhs = lhs; in paste_tokens()
487 *plhs = lhs; in paste_tokens()