Lines Matching defs:symtable2
8665 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
8804 symtable2
8805 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
8806 if (symtable1 == NULL || symtable2 == NULL)
8822 symp = symtable2;
8838 qsort (symtable2, count1, sizeof (struct elf_symbol),
8843 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8844 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8845 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8854 symtable2 = (struct elf_symbol *)
8856 if (symtable1 == NULL || symtable2 == NULL)
8872 symtable2[count2++].u.isym = isym;
8883 symtable2[i].name
8885 symtable2[i].u.isym->st_name);
8890 qsort (symtable2, count1, sizeof (struct elf_symbol),
8895 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8896 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8897 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8904 free (symtable2);