HomeSort by: relevance | last modified time | path
    Searched defs:sorted_syms (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/binutils/dist/bfd/
som.h 129 asymbol **sorted_syms; member in struct:somdata
207 #define obj_som_sorted_syms(bfd) (somdata (bfd).sorted_syms)
som.c 2804 asymbol **sorted_syms; local
2885 sorted_syms = bfd_zalloc (abfd, amt);
2886 if (sorted_syms == NULL)
2888 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2889 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2890 obj_som_sorted_syms (abfd) = sorted_syms;
2898 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2899 sorted_syms[i]->udata.i = i;
2901 som_symbol_data (sorted_syms[i])->index = i;
  /src/external/gpl3/binutils.old/dist/bfd/
som.h 129 asymbol **sorted_syms; member in struct:somdata
207 #define obj_som_sorted_syms(bfd) (somdata (bfd).sorted_syms)
som.c 2804 asymbol **sorted_syms; local
2885 sorted_syms = bfd_zalloc (abfd, amt);
2886 if (sorted_syms == NULL)
2888 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2889 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2890 obj_som_sorted_syms (abfd) = sorted_syms;
2898 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2899 sorted_syms[i]->udata.i = i;
2901 som_symbol_data (sorted_syms[i])->index = i;
  /src/external/gpl3/gdb/dist/bfd/
som.h 129 asymbol **sorted_syms; member in struct:somdata
207 #define obj_som_sorted_syms(bfd) (somdata (bfd).sorted_syms)
som.c 2804 asymbol **sorted_syms; local
2885 sorted_syms = bfd_zalloc (abfd, amt);
2886 if (sorted_syms == NULL)
2888 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2889 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2890 obj_som_sorted_syms (abfd) = sorted_syms;
2898 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2899 sorted_syms[i]->udata.i = i;
2901 som_symbol_data (sorted_syms[i])->index = i;
  /src/external/gpl3/gdb.old/dist/bfd/
som.h 129 asymbol **sorted_syms; member in struct:somdata
207 #define obj_som_sorted_syms(bfd) (somdata (bfd).sorted_syms)
som.c 2804 asymbol **sorted_syms; local
2885 sorted_syms = bfd_zalloc (abfd, amt);
2886 if (sorted_syms == NULL)
2888 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2889 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2890 obj_som_sorted_syms (abfd) = sorted_syms;
2898 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2899 sorted_syms[i]->udata.i = i;
2901 som_symbol_data (sorted_syms[i])->index = i;
  /src/external/gpl3/binutils/dist/binutils/
objdump.c 214 static asymbol **sorted_syms; variable
216 /* Number of symbols in `sorted_syms'. */
1378 if (want_section && !is_same_section (sec, sorted_syms[place]->section))
1381 return inf->symbol_is_valid (sorted_syms[place], inf);
1388 of the symbol in sorted_syms. */
1400 /* Indices in `sorted_syms'. */
1426 sym = sorted_syms[thisplace];
1444 && (bfd_asymbol_value (sorted_syms[thisplace])
1445 == bfd_asymbol_value (sorted_syms[thisplace - 1])))
1453 && (bfd_asymbol_value (sorted_syms[min]
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
objdump.c 214 static asymbol **sorted_syms; variable
216 /* Number of symbols in `sorted_syms'. */
1387 if (want_section && !is_same_section (sec, sorted_syms[place]->section))
1390 return inf->symbol_is_valid (sorted_syms[place], inf);
1397 of the symbol in sorted_syms. */
1409 /* Indices in `sorted_syms'. */
1435 sym = sorted_syms[thisplace];
1453 && (bfd_asymbol_value (sorted_syms[thisplace])
1454 == bfd_asymbol_value (sorted_syms[thisplace - 1])))
1462 && (bfd_asymbol_value (sorted_syms[min]
    [all...]

Completed in 50 milliseconds