HomeSort by relevance Sort by last modified time
    Searched defs:nsyms (Results 1 - 25 of 36) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/bfd/
plugin.h 31 int nsyms; member in struct:plugin_data_struct
plugin.c 134 int nsyms,
141 plugin_data->nsyms = nsyms;
144 if (nsyms != 0)
393 long nsyms = plugin_data->nsyms; local
395 BFD_ASSERT (nsyms >= 0);
397 return ((nsyms + 1) * sizeof (asymbol *));
425 long nsyms = plugin_data->nsyms; local
    [all...]
pef.c 950 long nsyms = bfd_pef_count_symbols (abfd); local
952 if (nsyms < 0)
953 return nsyms;
954 return ((nsyms + 1) * sizeof (asymbol *));
963 long nsyms = bfd_pef_count_symbols (abfd); local
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
    [all...]
mach-o.h 136 unsigned int nsyms; member in struct:bfd_mach_o_symtab_command
262 /* The symbols indicated by symoff and nsyms of the LC_SYMTAB load command
  /external/elfutils/libasm/
disasm_cb.c 96 int nsyms = shdr->sh_size / shdr->sh_entsize; local
97 for (int cnt = 1; cnt < nsyms; ++cnt)
  /external/elfutils/libelf/
nlist.c 70 size_t nsyms; local
132 nsyms = (shdr->sh_size
136 table = nlist_fshash_init (nsyms);
144 for (cnt = 0; cnt < nsyms; ++cnt)
  /external/elfutils/src/
arlib.c 160 uint32_t nsyms = le_bswap_32 (symtab.symsoff[AR_HDR_WORDS]); local
162 for (uint32_t cnt = 1; cnt <= nsyms; ++cnt)
251 int nsyms = shdr->sh_size / shdr->sh_entsize; local
252 for (int ndx = shdr->sh_info; ndx < nsyms; ++ndx)
  /toolchain/binutils/binutils-2.25/gas/config/
obj-som.c 268 int strsz, nsyms; local
278 nsyms = bfd_section_size (abfd, sec) / 12 - 1;
283 bfd_h_put_16 (abfd, (bfd_vma) nsyms, (bfd_byte *) p + 6);
obj-elf.c 2023 int strsz, nsyms; local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
incremental-dump.cc 65 unsigned int nsyms = input_file.get_global_symbol_count(); local
67 && offset < input_file.get_symbol_offset(nsyms))
266 unsigned int nsyms = symtab_location.data_size / sym_size; local
268 unsigned int first_global = nsyms - nglobals;
291 unsigned int nsyms = input_file.get_global_symbol_count(); local
292 if (nsyms > 0)
297 for (unsigned int symndx = 0; symndx < nsyms; ++symndx)
317 for (unsigned int symndx = 0; symndx < nsyms; ++symndx)
447 unsigned int nsyms = input_file.get_unused_symbol_count(); local
448 for (unsigned int symndx = 0; symndx < nsyms; ++symndx
    [all...]
archive.cc 290 unsigned int nsyms = elfcpp::Swap<32, true>::readval(pword); local
294 const char* pnames = reinterpret_cast<const char*>(pword + nsyms);
299 this->armap_.resize(nsyms);
302 for (unsigned int i = 0; i < nsyms; ++i)
321 this->armap_checked_.resize(nsyms);
    [all...]
dynobj.cc 1185 const unsigned int nsyms = hashed_dynsyms.size(); local
    [all...]
incremental.cc 576 unsigned int nsyms = input_file.get_global_symbol_count(); local
581 for (unsigned int i = 0; i < nsyms; ++i)
830 unsigned int* nsyms,
834 *nsyms = this->main_symtab_loc_.data_size / elfcpp::Elf_sizes<size>::sym_size;
1329 unsigned int nsyms = syms->size(); local
1561 unsigned int nsyms = syms->size(); local
1704 unsigned int nsyms = syms->size(); local
1749 unsigned int nsyms = entry->get_unused_global_symbol_count(); local
    [all...]
object.cc 354 unsigned int nsyms = this->get_global_symbols()->size(); local
355 this->reloc_bases_ = new unsigned int[nsyms];
361 for (unsigned int i = 0; i < nsyms; ++i)
381 unsigned int nsyms = this->local_symbol_count(); local
382 for (unsigned int i = 0; i < nsyms; i++)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
mmix-dis.c 99 long nsyms; local
107 nsyms = bfd_canonicalize_symtab (abfd, syms);
112 for (i = 0; i < nsyms && syms[i] != NULL; i++)
  /external/bison/src/
gram.c 41 int nsyms = 0; variable
246 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nritems = %d\n\n",
247 ntokens, nvars, nsyms, nrules, nritems);
255 for (i = ntokens; i < nsyms; i++)
  /external/google-breakpad/src/common/mac/
macho_reader.cc 380 uint32_t symoff, nsyms, stroff, strsize; local
381 cursor >> symoff >> nsyms >> stroff >> strsize;
391 size_t symbols_size = nsyms * symbol_size;
  /toolchain/binutils/binutils-2.25/gold/testsuite/
plugin_test.c 36 int nsyms; member in struct:claimed_file
257 int nsyms = 0; local
353 if (nsyms >= maxsyms)
363 syms[nsyms].name = NULL;
367 syms[nsyms].name = malloc(len + 1);
368 strncpy(syms[nsyms].name, info.name, len + 1);
370 syms[nsyms].version = NULL;
371 syms[nsyms].def = def;
372 syms[nsyms].visibility = vis;
373 syms[nsyms].size = info.size
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 409 Word nsyms, i, j, k, m; local
411 nsyms = VG_(sizeXA)(syms);
434 for (i = 0; i < nsyms; i++) {
436 k < nsyms
444 if (k < nsyms) {
454 vg_assert(i <= nsyms);
458 if (nsyms > 0) {
460 for (i = 1; i < nsyms; i++) {
478 vg_assert(j >= 0 && j <= nsyms);
479 VG_(dropTailXA)(syms, nsyms - j)
    [all...]
  /external/valgrind/coregrind/
m_redir.c 392 Int i, nsyms, becTag, becPrio; local
517 nsyms = VG_(DebugInfo_syms_howmany)( newdi );
518 for (i = 0; i < nsyms; i++) {
653 for (i = 0; i < nsyms; i++) {
790 Int nsyms, i; local
812 nsyms = VG_(DebugInfo_syms_howmany)( di );
813 for (i = 0; i < nsyms; i++) {
1715 Int nsyms = VG_(DebugInfo_syms_howmany)(di); local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
od-xcoff.c 385 unsigned int nsyms; member in struct:xcoff_dump
403 && symndx < data->nsyms
430 printf (_(" nbr symbols: %d\n"), data->nsyms);
639 if (data->nsyms == 0)
643 + data->nsyms * (unsigned)sizeof (struct external_syment);
678 xmalloc (data->nsyms * sizeof (union xcoff32_symbol));
680 for (i = 0; i < data->nsyms; i++)
747 + data->nsyms * (unsigned)sizeof (struct external_syment));
748 if (data->nsyms == 0 || data->syms == NULL)
773 for (i = 0; i < data->nsyms; i++
    [all...]
  /toolchain/binutils/binutils-2.25/include/mach-o/
external.h 160 unsigned char nsyms[4]; /* Number of symbols. */ member in struct:mach_o_symtab_command_external
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-coff.c 176 unsigned int nsyms; member in struct:simple_object_coff_read
289 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr, f_nsyms));
312 + ocr->nsyms * sizeof (struct external_syment);
506 unsigned int nsyms, const char **errmsg,
531 set_32 (hdr + offsetof (struct external_filehdr, f_nsyms), nsyms);
609 unsigned int nsyms; local
690 nsyms = 2 * (nscns + 1);
694 offset += nsyms * sizeof (struct external_syment);
777 symtab_offset, nsyms, &errmsg, err))
simple-object-xcoff.c 272 unsigned int nsyms; member in struct:simple_object_xcoff_read
332 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr,
344 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr,
369 + ocr->nsyms * SYMESZ;
573 unsigned int nsyms, const char **errmsg,
601 nsyms);
611 nsyms);
706 unsigned int nsyms; local
783 nsyms = 2 * (nscns + 1);
787 offset += nsyms * SYMESZ
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
write.c 1304 unsigned int k, j, nsyms; local
1642 int nsyms; local
    [all...]

Completed in 873 milliseconds

1 2