Lines Matching refs:ssymbuf
7363 struct elf_symbuf_head *ssymbuf, *ssymhead; in elf_create_symbuf() local
7384 total_size = ((shndx_count + 1) * sizeof (*ssymbuf) in elf_create_symbuf()
7386 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size); in elf_create_symbuf()
7387 if (ssymbuf == NULL) in elf_create_symbuf()
7393 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1); in elf_create_symbuf()
7394 ssymbuf->ssym = NULL; in elf_create_symbuf()
7395 ssymbuf->count = shndx_count; in elf_create_symbuf()
7396 ssymbuf->st_shndx = 0; in elf_create_symbuf()
7397 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++) in elf_create_symbuf()
7411 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count in elf_create_symbuf()
7412 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf) in elf_create_symbuf()
7416 return ssymbuf; in elf_create_symbuf()