Home | History | Annotate | Download | only in bfd

Lines Matching full:symcount

366    SYMCOUNT specifies the number of symbols to read, starting from
376 size_t symcount,
398 if (symcount == 0)
438 amt = (bfd_size_type) symcount * extsym_size;
442 alloc_ext = bfd_malloc2 (symcount, extsym_size);
457 amt = (bfd_size_type) symcount * sizeof (Elf_External_Sym_Shndx);
462 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
477 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
484 isymend = intsym_buf + symcount;
3921 unsigned int symcount = bfd_get_symcount (abfd);
3953 for (idx = 0; idx < symcount; idx++)
3972 for (idx = 0; idx < symcount; idx++)
4002 for (idx = 0; idx < symcount; idx++)
7418 int symcount;
7443 symcount = bfd_get_symcount (abfd);
7447 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
7455 symstrtab = (struct elf_sym_strtab *) bfd_malloc ((symcount + 1)
7463 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
7483 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
7485 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
7522 for (idx = 0; idx < symcount;)
7739 for (idx = 0; idx <= symcount; idx++)
7779 long symcount;
7783 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
7784 symtab_size = (symcount + 1) * (sizeof (asymbol *));
7785 if (symcount > 0)
7794 long symcount;
7804 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
7805 symtab_size = (symcount + 1) * (sizeof (asymbol *));
7806 if (symcount > 0)
7847 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
7849 if (symcount >= 0)
7850 bfd_get_symcount (abfd) = symcount;
7851 return symcount;
7859 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
7861 if (symcount >= 0)
7862 bfd_get_dynamic_symcount (abfd) = symcount;
7863 return symcount;
10874 long symcount ATTRIBUTE_UNUSED,