| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | hash.c | 523 struct bfd_hash_entry **newtable; in bfd_hash_insert() local 535 newtable = ((struct bfd_hash_entry **) in bfd_hash_insert() 537 if (newtable == NULL) in bfd_hash_insert() 542 memset (newtable, 0, alloc); in bfd_hash_insert() 555 chain_end->next = newtable[_index]; in bfd_hash_insert() 556 newtable[_index] = chain; in bfd_hash_insert() 558 table->table = newtable; in bfd_hash_insert()
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | hash.c | 624 struct bfd_hash_entry **newtable; in bfd_hash_insert() local 636 newtable = ((struct bfd_hash_entry **) in bfd_hash_insert() 638 if (newtable == NULL) in bfd_hash_insert() 643 memset (newtable, 0, alloc); in bfd_hash_insert() 656 chain_end->next = newtable[_index]; in bfd_hash_insert() 657 newtable[_index] = chain; in bfd_hash_insert() 659 table->table = newtable; in bfd_hash_insert()
|
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
| H A D | symtab.c | 178 eltlist_t *newtable; in grow_table() local 187 newtable = isc_mem_get(symtab->mctx, newsize * sizeof(eltlist_t)); in grow_table() 190 INIT_LIST(newtable[i]); in grow_table() 203 APPEND(newtable[hv % newsize], elt, link); in grow_table() 210 symtab->table = newtable; in grow_table()
|
| H A D | ht.c | 204 isc_ht_node_t **newtable = ht->table[ht->hindex]; in hashtable_rehash_one() local 227 node->next = newtable[hash]; in hashtable_rehash_one() 228 newtable[hash] = node; in hashtable_rehash_one()
|
| /netbsd-src/external/mpl/bind/dist/lib/isc/ |
| H A D | symtab.c | 173 eltlist_t *newtable; in isc_symtab_lookup() 182 newtable = isc_mem_cget(symtab->mctx, newsize, sizeof(eltlist_t)); in grow_table() 185 INIT_LIST(newtable[i]); in grow_table() 198 APPEND(newtable[hv % newsize], elt, link); in grow_table() 205 symtab->table = newtable; in grow_table() 178 eltlist_t *newtable; grow_table() local
|
| H A D | ht.c | 164 isc_ht_node_t **newtable = ht->table[ht->hindex]; 187 node->next = newtable[hash]; in hashtable_rehash() 188 newtable[hash] = node; in hashtable_rehash() 204 isc_ht_node_t **newtable = ht->table[ht->hindex]; hashtable_rehash_one() local
|
| /netbsd-src/external/mpl/bind/dist/lib/dns/ |
| H A D | badcache.c | 124 dns_bcentry_t **newtable, *bad, *next; badcache_resize() local
|
| H A D | rbt.c | 1525 dns_rbtnode_t **newtable = rbt->hashtable[rbt->hindex]; in dns_rbt_fullnamefromnode() 1550 node->hashnext = newtable[hash]; in create_node() 1551 newtable[hash] = node; in create_node() 1705 dns_rbtnode_t **newtable = rbt->hashtable[rbt->hindex]; hashtable_rehash_one() local
|
| H A D | zone.c | 18592 dns_keyfileio_t **newtable; zonemgr_keymgmt_resize() local
|
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/ |
| H A D | badcache.c | 123 dns_bcentry_t **newtable, *bad, *next; in badcache_resize() local 168 newtable = isc_mem_get(bc->mctx, sizeof(dns_bcentry_t *) * newsize); in badcache_resize() 169 memset(newtable, 0, sizeof(dns_bcentry_t *) * newsize); in badcache_resize() 194 bad->next = newtable[bad->hashval % newsize]; in badcache_resize() 195 newtable[bad->hashval % newsize] = bad; in badcache_resize() 206 bc->table = newtable; in badcache_resize()
|
| H A D | zone.c | 18532 dns_keyfileio_t **newtable; in zonemgr_keymgmt_resize() local 18575 newtable = isc_mem_get(mgmt->mctx, sizeof(dns_keyfileio_t *) * newsize); in zonemgr_keymgmt_resize() 18576 memset(newtable, 0, sizeof(dns_keyfileio_t *) * newsize); in zonemgr_keymgmt_resize() 18583 kfio->next = newtable[hash]; in zonemgr_keymgmt_resize() 18584 newtable[hash] = kfio; in zonemgr_keymgmt_resize() 18591 mgmt->table = newtable; in zonemgr_keymgmt_resize()
|
| /netbsd-src/lib/libc/stdio/ |
| H A D | vfwprintf.c | 1917 enum typeid *newtable; in __grow_type_table() local 1923 newtable = NULL; in __grow_type_table() 1924 errno = reallocarr(&newtable, newsize, sizeof(*newtable)); in __grow_type_table() 1927 memcpy(newtable, oldtable, oldsize * sizeof(*newtable)); in __grow_type_table() 1929 newtable = oldtable; in __grow_type_table() 1930 errno = reallocarr(&newtable, newsize, sizeof(*newtable)); in __grow_type_table() 1938 memset(&newtable[oldsize], 0, (newsize - oldsize) * sizeof(*newtable)); in __grow_type_table() 1940 *typetable = newtable; in __grow_type_table()
|
| /netbsd-src/external/lgpl3/gmp/dist/tune/ |
| H A D | many.pl | 769 my @newtable = @{$ENV{table2}}; 770 push @newtable, @table; 771 @table = @newtable;
|