Lines Matching refs:nsym
936 size_t nsym, i; in count_syms() local
939 for (i = nsym = 0; i < p->ghashtab[0]; i++) { in count_syms()
940 if (buckets[i] > nsym) in count_syms()
941 nsym = buckets[i]; in count_syms()
943 if (nsym) { in count_syms()
944 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]); in count_syms()
945 do nsym++; in count_syms()
948 return nsym; in count_syms()
966 size_t nsym = count_syms(p); in makefuncdescs() local
967 size_t i, size = nsym * sizeof(*p->funcdescs); in makefuncdescs()
980 for (i=0; i<nsym; i++) { in makefuncdescs()
2223 uint32_t nsym; in dladdr() local
2236 nsym = count_syms(p); in dladdr()
2241 if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) { in dladdr()
2248 if (!best) for (; nsym; nsym--, sym++) { in dladdr()