Searched refs:tabsize (Results 1 – 3 of 3) sorted by relevance
/toolchain/binutils/binutils-2.27/ld/ |
D | ldcref.c | 117 static size_t tabsize, entsize, refsize; variable 235 tabsize = cref_table.root.size * sizeof (struct bfd_hash_entry *); in handle_asneeded_cref() 236 old_tab = xmalloc (tabsize + entsize + refsize); in handle_asneeded_cref() 242 memcpy (old_tab, cref_table.root.table, tabsize); in handle_asneeded_cref() 243 old_ent = (char *) old_tab + tabsize; in handle_asneeded_cref() 284 old_ent = (char *) old_tab + tabsize; in handle_asneeded_cref() 289 memcpy (cref_table.root.table, old_tab, tabsize); in handle_asneeded_cref()
|
D | ChangeLog-2006 | 672 (tabsize, entsize, refsize, old_symcount): Likewise.
|
/toolchain/binutils/binutils-2.27/bfd/ |
D | elflink.c | 3631 size_t tabsize = 0; in elf_link_add_object_symbols() local 4050 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *); in elf_link_add_object_symbols() 4051 old_tab = bfd_malloc (tabsize + entsize); in elf_link_add_object_symbols() 4068 old_ent = (char *) old_tab + tabsize; in elf_link_add_object_symbols() 4069 memcpy (old_tab, htab->root.table.table, tabsize); in elf_link_add_object_symbols() 4794 old_ent = (char *) old_tab + tabsize; in elf_link_add_object_symbols() 4800 memcpy (htab->root.table.table, old_tab, tabsize); in elf_link_add_object_symbols()
|