Lines Matching full:nested_list
5432 static void macro_subst(TokenString *tok_str, Sym **nested_list,
9594 static int *macro_arg_subst(Sym **nested_list, int *macro_str, Sym *args)
9671 macro_subst(&str, nested_list, st, NULL);
9692 result to (tok_str,tok_len). 'nested_list' is the list of all
9696 Sym **nested_list, Sym *s, struct macro_level **can_read_stream)
9819 mstr = macro_arg_subst(nested_list, mstr, args);
9830 sym_push2(nested_list, s->v, 0, 0);
9831 macro_subst(tok_str, nested_list, mstr, can_read_stream);
9833 sa1 = *nested_list;
9834 *nested_list = sa1->prev;
9976 (tok_str,tok_len). 'nested_list' is the list of all macros we got
9978 static void macro_subst(TokenString *tok_str, Sym **nested_list,
10004 if (sym_find2(*nested_list, t))
10011 ret = macro_subst_tok(tok_str, nested_list, s, can_read_stream);
10030 Sym *nested_list, *s;
10045 nested_list = NULL;
10047 if (macro_subst_tok(&str, &nested_list, s, &ml) == 0) {