Lines Matching defs:symtable2
8755 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
8894 symtable2
8895 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
8896 if (symtable1 == NULL || symtable2 == NULL)
8914 symp = symtable2;
8932 qsort (symtable2, count1, sizeof (struct elf_symbol),
8937 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8938 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8939 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8948 symtable2 = (struct elf_symbol *)
8950 if (symtable1 == NULL || symtable2 == NULL)
8966 symtable2[count2++].u.isym = isym;
8982 symtable2[i].name
8984 symtable2[i].u.isym->st_name);
8985 if (symtable2[i].name == NULL)
8992 qsort (symtable2, count1, sizeof (struct elf_symbol),
8997 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8998 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8999 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
9006 free (symtable2);