Searched refs:symsize (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/lib/libc/gen/
H A Dnlist.c114 u_long symsize; local
151 symsize = exec->a_syms;
152 stroff = symoff + symsize;
177 while (symsize > 0) {
180 symsize-= sizeof(struct nlist);
241 Elf_Size symsize = 0, symstrsize = 0; local
286 symsize = shdr[i].sh_size;
338 while (symsize > 0 && nent > 0) {
339 cc = MIN(symsize, sizeof(sbuf));
342 symsize
[all...]
/freebsd-10.0-release/contrib/binutils/ld/
H A Dldcref.c491 long symsize; local
494 symsize = bfd_get_symtab_upper_bound (abfd);
495 if (symsize < 0)
497 asymbols = xmalloc (symsize);
613 long symsize; local
616 symsize = bfd_get_symtab_upper_bound (abfd);
617 if (symsize < 0)
619 asymbols = xmalloc (symsize);
H A Dldmisc.c296 long symsize; local
299 symsize = bfd_get_symtab_upper_bound (abfd);
300 if (symsize < 0)
302 asymbols = xmalloc (symsize);
H A Dpe-dll.c604 int nsyms, symsize; local
606 symsize = bfd_get_symtab_upper_bound (b);
607 symbols = xmalloc (symsize);
1129 int nsyms, symsize; local
1131 symsize = bfd_get_symtab_upper_bound (b);
1132 symbols = xmalloc (symsize);
1203 int nsyms, symsize; local
1223 symsize = bfd_get_symtab_upper_bound (b);
1224 symbols = xmalloc (symsize);
H A Dldmain.c1229 long symsize;
1232 symsize = bfd_get_symtab_upper_bound (abfd);
1233 if (symsize < 0)
1235 asymbols = xmalloc (symsize);
1227 long symsize; local
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dsomread.c94 CONST int symsize = sizeof (struct symbol_dictionary_record); local
104 buf = alloca (symsize * number_of_symbols);
106 val = bfd_bread (buf, symsize * number_of_symbols, abfd);
107 if (val != symsize * number_of_symbols)
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c539 size_t symsize; local
541 if (addr_to_sym(*addrp, &symoff, &symsize) != NULL && symoff < symsize)
1658 size_t symsize; local
1660 symname = addr_to_sym(addr, &symoff, &symsize);
1663 (void) sprintf(buf, "%s[%ld]", symname, (long)symsize);
1672 else if (symoff <= symsize || (symoff < 256 && addr != symoff))
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dnm.c814 long symsize;
816 symsize = bfd_get_symtab_upper_bound (abfd);
817 if (symsize < 0)
819 syms = xmalloc (symsize);
809 long symsize; local
H A Dobjcopy.c1325 long symsize;
1408 symsize = bfd_get_symtab_upper_bound (ibfd);
1409 if (symsize < 0)
1415 osympp = isympp = xmalloc (symsize);
2588 bfd_size_type symsize, stringsize;
2593 &symsize, &strings,
2602 || ! bfd_set_section_size (obfd, stabsec, symsize)
2617 if (! bfd_set_section_contents (obfd, stabsec, syms, 0, symsize)
1323 long symsize; local
2586 bfd_size_type symsize, stringsize; local
/freebsd-10.0-release/sys/sys/
H A Dlinker.h320 size_t symsize; member in struct:kld_sym_lookup
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_link.c1123 size_t symsize, nsym, isym, istr, len; local
1168 symsize = sizeof (Elf64_Sym);
1183 symsize = sizeof (Elf32_Sym);
1277 isym = data_sym->d_size / symsize;
1378 nsym * symsize)) == NULL) {
1397 data_sym->d_size += nsym * symsize;
1400 shdr_sym.sh_size += nsym * symsize;
/freebsd-10.0-release/lib/libkvm/
H A Dkvm.c430 lookup.symsize = 0;
456 /* lookup.symsize */
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dlinker.c746 long symsize;
749 symsize = bfd_get_symtab_upper_bound (abfd);
750 if (symsize < 0)
752 bfd_get_outsymbols (abfd) = bfd_alloc (abfd, symsize);
753 if (bfd_get_outsymbols (abfd) == NULL && symsize != 0)
745 long symsize; local
H A Decofflink.c1140 long symsize;
1164 symsize = bfd_get_symtab_upper_bound (input_bfd);
1165 if (symsize < 0)
1167 symbols = (asymbol **) bfd_alloc (output_bfd, (bfd_size_type) symsize);
1137 long symsize; local
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c649 size_t symsize = 0; local
667 mem = realloc(symname, symsize + size + 1);
675 memcpy(symname+symsize, buff, size);
676 symsize += size;
678 if (symsize == 0) {
685 symname[symsize] = '\0';
/freebsd-10.0-release/sys/kern/
H A Dkern_linker.c1332 lookup.symsize = symval.size;
1341 lookup.symsize = symval.size;

Completed in 272 milliseconds