Lines Matching refs:decls
249 decl_list *decls; in def_struct() local
257 tailp = &defp->def.st.decls; in def_struct()
261 decls = calloc(1, sizeof (decl_list)); in def_struct()
262 decls->decl = dec; in def_struct()
267 endp = *tailp = decls; in def_struct()
268 tailp = &decls->next; in def_struct()
288 decl_list *decls; in def_program() local
301 tailp = &defp->def.st.decls; in def_program()
331 decls = calloc(1, sizeof (decl_list)); in def_program()
332 plist->args.decls = decls; in def_program()
333 decls->decl = dec; in def_program()
334 tailp = &decls->next; in def_program()
340 decls = calloc(1, sizeof (decl_list)); in def_program()
341 decls->decl = dec; in def_program()
342 *tailp = decls; in def_program()
345 tailp = &decls->next; in def_program()