HomeSort by: relevance | last modified time | path
    Searched defs:nsyms (Results 1 - 25 of 96) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/bfd/
plugin.h 35 int nsyms; member in struct:plugin_data_struct
  /src/external/gpl3/gdb.old/dist/bfd/
plugin.h 35 int nsyms; member in struct:plugin_data_struct
  /src/external/gpl3/binutils.old/dist/bfd/
plugin.h 35 int nsyms; member in struct:plugin_data_struct
  /src/usr.bin/crunch/crunchide/
exec_aout.c 50 int nsyms, ntextrel, ndatarel; variable
150 nsyms = hdrp->a_syms / sizeof(struct nlist);
158 for(symp = symbase; symp < symbase + nsyms; symp++) {
exec_elf32.c 183 Elf_Word j, nsyms; local
260 nsyms = shdrp[symtabsnum].sh_size / shdrp[symtabsnum].sh_entsize;
270 for (j = 0; j < nsyms; j++) {
  /src/usr.sbin/lockstat/
elf32.c 95 static int nsyms; variable
161 nsyms = (int)(symhdr.sh_size / sizeof(Elf_Sym));
191 for (i = 0; i < nsyms; i++) {
231 if (++i >= nsyms)
  /src/usr.sbin/kvm_mkdb/
nlist_aout.c 109 int nsyms; local
180 nsyms = ebuf.a_syms / sizeof(struct nlist);
181 while (nsyms--) {
nlist_elf32.c 112 unsigned long i, nsyms; local
232 nsyms = symshdrp->sh_size / sizeof(*symp);
256 for (i = 0; i < nsyms; i++) {
  /src/usr.sbin/tprof/
ksyms.c 47 static size_t nsyms = 0; variable
128 nsyms++;
129 syms = erealloc(syms, sizeof(*syms) * nsyms);
130 syms[nsyms - 1] = sym;
134 qsort(syms, nsyms, sizeof(*syms), compare_value);
136 *nsymp = nsyms;
154 hi = nsyms - 1;
168 assert(lo == nsyms - 1 || syms[lo]->value <= value);
170 for (i = lo; i < nsyms; i++) {
  /src/lib/libc/gen/
nlist_elf32.c 96 size_t mappedsize, nsyms; local
267 nsyms = (size_t)(symshdrp->sh_size / sizeof(*symp));
287 for (i = 0; i < nsyms; i++) {
  /src/external/gpl3/binutils/dist/gas/config/
obj-som.c 272 int strsz, nsyms; local
282 nsyms = bfd_section_size (sec) / 12 - 1;
287 bfd_h_put_16 (abfd, nsyms, p + 6);
  /src/external/gpl3/binutils/dist/opcodes/
mmix-dis.c 100 long nsyms; local
108 nsyms = bfd_canonicalize_symtab (abfd, syms);
113 for (i = 0; i < nsyms && syms[i] != NULL; i++)
  /src/external/gpl3/binutils.old/dist/gas/config/
obj-som.c 272 int strsz, nsyms; local
282 nsyms = bfd_section_size (sec) / 12 - 1;
287 bfd_h_put_16 (abfd, nsyms, p + 6);
  /src/external/gpl3/binutils.old/dist/opcodes/
mmix-dis.c 100 long nsyms; local
108 nsyms = bfd_canonicalize_symtab (abfd, syms);
113 for (i = 0; i < nsyms && syms[i] != NULL; i++)
  /src/external/gpl3/gcc.old/dist/lto-plugin/
lto-symtab.c 39 unsigned nsyms; member in struct:file_handle
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;
231 unsigned int nsyms = handle->nsyms; local
261 unsigned int nsyms = handle->nsyms; local
303 unsigned int nsyms = handle->nsyms; local
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
mmix-dis.c 100 long nsyms; local
108 nsyms = bfd_canonicalize_symtab (abfd, syms);
113 for (i = 0; i < nsyms && syms[i] != NULL; i++)
  /src/external/gpl3/gdb.old/dist/opcodes/
mmix-dis.c 100 long nsyms; local
108 nsyms = bfd_canonicalize_symtab (abfd, syms);
113 for (i = 0; i < nsyms && syms[i] != NULL; i++)
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 634 int nsyms; local
636 nsyms = symsize / sizeof(Elf32_Sym);
640 saveRead(in, symoff, nsyms * sizeof(Elf32_Sym),
642 elfsymsp->nsymbols = nsyms;
644 for (i = 0; i < nsyms; i++) {
669 int nsyms, i; local
678 nsyms = ecoffsymtab.nsymbols;
692 symtabsize = nsyms * sizeof(struct ecoff_extsym);
696 write_ecoff_symhdr(out, ep, &symhdr, nsyms, symtaboff,
708 padding = symtabsize - (nsyms * sizeof(struct ecoff_extsym))
765 int nsyms, idx; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
buildsym.h 79 int nsyms; member in struct:pending
  /src/external/gpl3/gdb.old/dist/gdb/
buildsym.h 79 int nsyms; member in struct:pending
  /src/sys/kern/
kern_ksyms.c 339 int nsyms = symsize / sizeof(Elf_Sym); local
343 if ((nmap == ksyms_nmap) && (nsyms >= KSYMS_MAX_ID)) {
345 nsyms, KSYMS_MAX_ID);
348 nsyms = KSYMS_MAX_ID - 1;
362 tab->sd_nmapsize = nsyms;
370 memset(nmap, 0, nsyms * sizeof(uint32_t));
378 for (i = n = 0; i < nsyms; i++) {
  /src/usr.bin/unifdef/
unifdef.c 220 static int nsyms; /* number of symbols */ variable
327 if (nsyms == 0 && !symlist) {
950 for (symind = 0; symind < nsyms; ++symind) {
971 if (nsyms >= MAXSYMS)
973 symind = nsyms++;
  /src/external/bsd/byacc/dist/
main.c 93 Value_t nsyms; variable
  /src/external/cddl/osnet/dev/fbt/
fbt.c 458 int nsyms = (mc->nmap != NULL) ? mc->nmapsize : mc->nsym; local
472 ctfoff = malloc(sizeof(uint32_t) * nsyms, M_FBT, M_WAITOK);
475 for (i = 0; i < nsyms; i++, ctfoff++, symp++) {
1152 int nsyms; local
1173 nsyms = (mc->nmap != NULL) ? mc->nmapsize : mc->nsym;
1196 if (symindx >= nsyms)
  /src/external/gpl3/binutils/dist/bfd/
pef.c 955 long nsyms = bfd_pef_count_symbols (abfd); local
957 if (nsyms < 0)
958 return nsyms;
959 return ((nsyms + 1) * sizeof (asymbol *));
968 long nsyms = bfd_pef_count_symbols (abfd); local
970 if (nsyms < 0)
971 return nsyms;
973 syms = bfd_alloc (abfd, nsyms * sizeof (asymbol));
977 for (i = 0; i < nsyms; i++)
980 alocation[nsyms] = NULL
    [all...]

Completed in 48 milliseconds

1 2 3 4