Lines Matching refs:tmp

656   SAVED_F77_COMMON_PTR tmp;
674 tmp = allocate_saved_f77_common_node ();
679 tmp->name = xmalloc (strlen (name) + 1);
694 tmp->owning_function = xmalloc (strlen (local_copy_func_stab) + 1);
696 strcpy (tmp->owning_function, local_copy_func_stab);
698 strcpy (tmp->name, name);
699 tmp->offset = offset;
700 tmp->next = NULL;
701 tmp->entries = NULL;
702 tmp->secnum = secnum;
704 current_common = tmp;
708 head_common_list = tail_common_list = tmp;
712 tail_common_list->next = tmp;
713 tail_common_list = tmp;
725 COMMON_ENTRY_PTR tmp;
733 tmp = allocate_common_entry_node ();
735 tmp->next = NULL;
736 tmp->symbol = entry_sym_ptr;
744 current_common->entries = tmp;
745 current_common->end_of_entries = tmp;
749 current_common->end_of_entries->next = tmp;
750 current_common->end_of_entries = tmp;
763 SAVED_F77_COMMON_PTR tmp;
765 tmp = head_common_list;
767 while (tmp != NULL)
769 if (strcmp (tmp->name, name) == 0)
770 return (tmp);
772 tmp = tmp->next;
785 SAVED_F77_COMMON_PTR tmp;
787 tmp = head_common_list;
789 while (tmp != NULL)
791 if (DEPRECATED_STREQ (tmp->name, name)
792 && DEPRECATED_STREQ (tmp->owning_function, funcname))
793 return (tmp);
795 tmp = tmp->next;
836 SAVED_F77_COMMON_PTR tmp;
849 tmp = head_common_list;
851 while (tmp != NULL)
853 if (COMMON_NEEDS_PATCHING (tmp))
854 if (strcmp (tmp->name, name) == 0)
855 patch_common_entries (tmp, offset, secnum);
857 tmp = tmp->next;
904 SAVED_BF_PTR tmp = saved_bf_list;
907 while (tmp != NULL)
909 next = tmp->next;
910 xfree (tmp);
911 tmp = next;
924 SAVED_BF_PTR tmp;
940 tmp = current_head_bf_list;
942 return (tmp->symnum_bf);
953 tmp = saved_bf_list;
954 while (tmp != NULL)
957 if (tmp->symnum_fcn == the_function)
961 current_head_bf_list = tmp->next;
962 return (tmp->symnum_bf);
964 tmp = tmp->next;
976 SAVED_FUNCTION_PTR tmp = saved_function_list;
979 while (tmp != NULL)
981 next = tmp->next;
982 xfree (tmp);
983 tmp = next;