Home | History | Annotate | Download | only in src

Lines Matching defs:shnum

751   size_t shnum;
752 if (elf_getshdrnum (ebl->elf, &shnum) < 0)
755 bool scnnames_malloced = shnum * sizeof (const char *) > 128 * 1024;
758 scnnames = (const char **) xmalloc (sizeof (const char *) * shnum);
760 scnnames = (const char **) alloca (sizeof (const char *) * shnum);
876 shnum));