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

  /src/external/gpl3/gdb/dist/gdb/
arm-pikeos-tdep.c 53 long storage_needed = bfd_get_symtab_upper_bound (abfd); local
54 if (storage_needed <= 0)
58 ((asymbol **) xmalloc (storage_needed));
dicos-tdep.c 56 long storage_needed; local
78 storage_needed = bfd_get_symtab_upper_bound (abfd);
79 if (storage_needed < 0)
87 if (storage_needed > 0)
91 symbol_table = (asymbol **) xmalloc (storage_needed);
machoread.c 783 long storage_needed; local
799 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd.get ());
800 if (storage_needed < 0)
805 if (storage_needed > 0)
809 symbol_table.resize (storage_needed / sizeof (asymbol *));
solib-darwin.c 149 long storage_needed; local
155 storage_needed = bfd_get_symtab_upper_bound (abfd);
157 if (storage_needed <= 0)
160 symbol_table = (asymbol **) xmalloc (storage_needed);
solib-frv.c 954 long storage_needed; local
958 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
961 if (storage_needed <= 0)
965 lm->dyn_syms = (asymbol **) xmalloc (storage_needed);
977 long storage_needed; local
980 storage_needed = bfd_get_dynamic_reloc_upper_bound (abfd);
983 if (storage_needed <= 0)
987 lm->dyn_relocs = (arelent **) xmalloc (storage_needed);
elfread.c 1065 long symcount = 0, dynsymcount = 0, synthcount, storage_needed; local
1090 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd.get ());
1091 if (storage_needed < 0)
1096 if (storage_needed > 0)
1101 symbol_table = (asymbol **) bfd_alloc (abfd, storage_needed);
1115 storage_needed = bfd_get_dynamic_symtab_upper_bound (objfile->obfd.get ());
1117 if (storage_needed > 0)
1126 dyn_symbol_table = (asymbol **) bfd_alloc (abfd, storage_needed);
solib.c 1442 long storage_needed = bfd_get_symtab_upper_bound (abfd); local
1445 if (storage_needed > 0)
1449 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
1641 long storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd); local
1644 if (storage_needed > 0)
1647 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
  /src/external/gpl3/gdb.old/dist/gdb/
arm-pikeos-tdep.c 53 long storage_needed = bfd_get_symtab_upper_bound (abfd); local
54 if (storage_needed <= 0)
58 ((asymbol **) xmalloc (storage_needed));
dicos-tdep.c 56 long storage_needed; local
78 storage_needed = bfd_get_symtab_upper_bound (abfd);
79 if (storage_needed < 0)
87 if (storage_needed > 0)
91 symbol_table = (asymbol **) xmalloc (storage_needed);
machoread.c 781 long storage_needed; local
797 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd.get ());
798 if (storage_needed < 0)
803 if (storage_needed > 0)
807 symbol_table.resize (storage_needed / sizeof (asymbol *));
solib-darwin.c 149 long storage_needed; local
155 storage_needed = bfd_get_symtab_upper_bound (abfd);
157 if (storage_needed <= 0)
160 symbol_table = (asymbol **) xmalloc (storage_needed);
solib-frv.c 954 long storage_needed; local
958 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
961 if (storage_needed <= 0)
965 lm->dyn_syms = (asymbol **) xmalloc (storage_needed);
977 long storage_needed; local
980 storage_needed = bfd_get_dynamic_reloc_upper_bound (abfd);
983 if (storage_needed <= 0)
987 lm->dyn_relocs = (arelent **) xmalloc (storage_needed);
elfread.c 1066 long symcount = 0, dynsymcount = 0, synthcount, storage_needed; local
1091 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd.get ());
1092 if (storage_needed < 0)
1097 if (storage_needed > 0)
1102 symbol_table = (asymbol **) bfd_alloc (abfd, storage_needed);
1116 storage_needed = bfd_get_dynamic_symtab_upper_bound (objfile->obfd.get ());
1118 if (storage_needed > 0)
1127 dyn_symbol_table = (asymbol **) bfd_alloc (abfd, storage_needed);
solib.c 1467 long storage_needed = bfd_get_symtab_upper_bound (abfd); local
1470 if (storage_needed > 0)
1474 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
1666 long storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd); local
1669 if (storage_needed > 0)
1672 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
  /src/external/gpl3/binutils/usr.sbin/mdsetimage/
bin_bfd.c 70 long storage_needed; local
84 storage_needed = bfd_get_symtab_upper_bound(abfd);
85 if (storage_needed <= 0) {
90 symbol_table = malloc(storage_needed);
  /src/external/gpl3/binutils.old/usr.sbin/mdsetimage/
bin_bfd.c 70 long storage_needed; local
84 storage_needed = bfd_get_symtab_upper_bound(abfd);
85 if (storage_needed <= 0) {
90 symbol_table = malloc(storage_needed);
  /src/external/gpl3/binutils/usr.sbin/dbsym/
dbsym.c 218 long storage_needed; local
223 storage_needed = bfd_get_symtab_upper_bound(abfd);
224 if (storage_needed <= 0)
227 if ((symbol_table = (asymbol **)malloc(storage_needed)) == NULL)
  /src/external/gpl3/binutils.old/usr.sbin/dbsym/
dbsym.c 218 long storage_needed; local
223 storage_needed = bfd_get_symtab_upper_bound(abfd);
224 if (storage_needed <= 0)
227 if ((symbol_table = (asymbol **)malloc(storage_needed)) == NULL)
  /src/external/gpl3/gdb/dist/gdb/compile/
compile-object-load.c 607 long storage_needed; local
637 storage_needed = bfd_get_symtab_upper_bound (abfd.get ());
638 if (storage_needed < 0)
698 storage_needed);
  /src/external/gpl3/gdb.old/dist/gdb/compile/
compile-object-load.c 608 long storage_needed; local
638 storage_needed = bfd_get_symtab_upper_bound (abfd.get ());
639 if (storage_needed < 0)
699 storage_needed);
  /src/external/gpl3/binutils/dist/binutils/
dlltool.c 3217 long storage_needed;
3228 storage_needed = bfd_get_symtab_upper_bound (abfd);
3229 if (storage_needed <= 0)
3232 symbol_table = xmalloc (storage_needed);
3216 long storage_needed; local
  /src/external/gpl3/binutils.old/dist/binutils/
dlltool.c 3216 long storage_needed;
3227 storage_needed = bfd_get_symtab_upper_bound (abfd);
3228 if (storage_needed <= 0)
3231 symbol_table = xmalloc (storage_needed);
3215 long storage_needed; local
  /src/external/gpl3/binutils/dist/ld/
ldlang.c 5092 long storage_needed;
5098 storage_needed = bfd_get_symtab_upper_bound (link_info.output_bfd);
5099 if (storage_needed > 0)
5105 symbol_table = xmalloc (storage_needed);
5089 long storage_needed; local
  /src/external/gpl3/binutils.old/dist/ld/
ldlang.c 5109 long storage_needed;
5115 storage_needed = bfd_get_symtab_upper_bound (link_info.output_bfd);
5116 if (storage_needed > 0)
5122 symbol_table = xmalloc (storage_needed);
5106 long storage_needed; local

Completed in 104 milliseconds