Home | History | Annotate | Download | only in lto-plugin

Lines Matching refs:nsyms

39   unsigned nsyms;
46 /* Write NSYMS symbols from file HANDLE in SYMS. */
49 get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
53 assert (h->nsyms == nsyms);
55 for (i = 0; i < nsyms; i++)
89 /* For a file identified by HANDLE, add NSYMS symbols from SYMS. */
92 add_symbols (void *handle, int nsyms,
97 h->nsyms = nsyms;
98 h->syms = calloc (nsyms, sizeof (struct ld_plugin_symbol));
101 for (i = 0; i < nsyms; i++)
231 unsigned int nsyms = handle->nsyms;
234 for (i = 0; i < nsyms; i++)
261 unsigned int nsyms = handle->nsyms;
264 for (i = 0; i < nsyms; i++)
303 unsigned int nsyms = handle->nsyms;
306 for (i = 0; i < nsyms; i++)
323 handle->nsyms = 0;