Lines Matching refs:tmp
578 struct name_list *tmp; variable
579 tmp = (struct name_list *) xmalloc (sizeof *tmp);
580 tmp->name = $2;
581 tmp->next = $1;
582 $$ = tmp;
587 struct name_list *tmp; variable
588 tmp = (struct name_list *) xmalloc (sizeof *tmp);
589 tmp->name = $1;
590 tmp->next = NULL;
591 $$ = tmp;
598 struct wildcard_list *tmp; variable
599 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
600 tmp->next = $1;
601 tmp->spec = $3;
602 $$ = tmp;
607 struct wildcard_list *tmp; variable
608 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
609 tmp->next = NULL;
610 tmp->spec = $1;
611 $$ = tmp;
618 struct wildcard_spec tmp; variable
619 tmp.name = $1;
620 tmp.exclude_name_list = NULL;
621 tmp.sorted = none;
622 tmp.section_flag_list = NULL;
623 lang_add_wild (&tmp, NULL, ldgram_had_keep);
627 struct wildcard_spec tmp; variable
628 tmp.name = $2;
629 tmp.exclude_name_list = NULL;
630 tmp.sorted = none;
631 tmp.section_flag_list = $1;
632 lang_add_wild (&tmp, NULL, ldgram_had_keep);
640 struct wildcard_spec tmp; variable
641 tmp.name = NULL;
642 tmp.exclude_name_list = NULL;
643 tmp.sorted = none;
644 tmp.section_flag_list = $1;
645 lang_add_wild (&tmp, $3, ldgram_had_keep);