Home | History | Annotate | Download | only in bfd

Lines Matching defs:symtable2

8747   struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
8886 symtable2
8887 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
8888 if (symtable1 == NULL || symtable2 == NULL)
8906 symp = symtable2;
8924 qsort (symtable2, count1, sizeof (struct elf_symbol),
8929 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8930 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8931 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8940 symtable2 = (struct elf_symbol *)
8942 if (symtable1 == NULL || symtable2 == NULL)
8958 symtable2[count2++].u.isym = isym;
8974 symtable2[i].name
8976 symtable2[i].u.isym->st_name);
8977 if (symtable2[i].name == NULL)
8984 qsort (symtable2, count1, sizeof (struct elf_symbol),
8989 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8990 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8991 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8998 free (symtable2);