Home | History | Annotate | Download | only in bfd

Lines Matching refs:nsyms

950   long nsyms = bfd_pef_count_symbols (abfd);
952 if (nsyms < 0)
953 return nsyms;
954 return ((nsyms + 1) * sizeof (asymbol *));
963 long nsyms = bfd_pef_count_symbols (abfd);
965 if (nsyms < 0)
966 return nsyms;
968 syms = bfd_alloc (abfd, nsyms * sizeof (asymbol));
972 for (i = 0; i < nsyms; i++)
975 alocation[nsyms] = NULL;
978 if (ret != nsyms)