Searched refs:storage_needed (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/gdb/gdb/
H A Dnlmread.c95 long storage_needed; local
104 storage_needed = bfd_get_symtab_upper_bound (abfd);
105 if (storage_needed < 0)
108 if (storage_needed > 0)
110 symbol_table = (asymbol **) xmalloc (storage_needed);
H A Delfread.c148 long storage_needed; local
466 long symcount = 0, dynsymcount = 0, synthcount, storage_needed; local
485 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd);
486 if (storage_needed < 0)
490 if (storage_needed > 0)
492 symbol_table = (asymbol **) xmalloc (storage_needed);
505 storage_needed = bfd_get_dynamic_symtab_upper_bound (objfile->obfd);
507 if (storage_needed > 0)
509 dyn_symbol_table = (asymbol **) xmalloc (storage_needed);
H A Dsolib-svr4.c214 long storage_needed; local
222 storage_needed = bfd_get_symtab_upper_bound (abfd);
224 if (storage_needed > 0)
226 symbol_table = (asymbol **) xmalloc (storage_needed);
250 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
252 if (storage_needed > 0)
254 symbol_table = (asymbol **) xmalloc (storage_needed);
H A Dpa64solib.c1217 unsigned int storage_needed; local
1225 storage_needed = bfd_get_symtab_upper_bound (abfd);
1227 if (storage_needed > 0)
1229 symbol_table = (asymbol **) xmalloc (storage_needed);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dsimple.c161 int storage_needed; local
237 storage_needed = bfd_get_symtab_upper_bound (abfd);
238 symbol_table = bfd_malloc (storage_needed);
242 storage_needed = 0;

Completed in 91 milliseconds