| /src/external/gpl3/binutils/dist/bfd/ |
| hash.c | 624 struct bfd_hash_entry **newtable; local 636 newtable = ((struct bfd_hash_entry **) 638 if (newtable == NULL) 643 memset (newtable, 0, alloc); 656 chain_end->next = newtable[_index]; 657 newtable[_index] = chain; 659 table->table = newtable;
|
| /src/external/gpl3/binutils.old/dist/bfd/ |
| hash.c | 624 struct bfd_hash_entry **newtable; local 636 newtable = ((struct bfd_hash_entry **) 638 if (newtable == NULL) 643 memset (newtable, 0, alloc); 656 chain_end->next = newtable[_index]; 657 newtable[_index] = chain; 659 table->table = newtable;
|
| /src/external/gpl3/gdb.old/dist/bfd/ |
| hash.c | 624 struct bfd_hash_entry **newtable; local 636 newtable = ((struct bfd_hash_entry **) 638 if (newtable == NULL) 643 memset (newtable, 0, alloc); 656 chain_end->next = newtable[_index]; 657 newtable[_index] = chain; 659 table->table = newtable;
|
| /src/external/gpl3/gdb/dist/bfd/ |
| hash.c | 624 struct bfd_hash_entry **newtable; local 636 newtable = ((struct bfd_hash_entry **) 638 if (newtable == NULL) 643 memset (newtable, 0, alloc); 656 chain_end->next = newtable[_index]; 657 newtable[_index] = chain; 659 table->table = newtable;
|
| /src/external/mpl/bind/dist/lib/isc/ |
| symtab.c | 173 eltlist_t *newtable; local 182 newtable = isc_mem_cget(symtab->mctx, newsize, sizeof(eltlist_t)); 185 INIT_LIST(newtable[i]); 198 APPEND(newtable[hv % newsize], elt, link); 205 symtab->table = newtable;
|
| ht.c | 164 isc_ht_node_t **newtable = ht->table[ht->hindex]; local 187 node->next = newtable[hash]; 188 newtable[hash] = node;
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| symtab.c | 178 eltlist_t *newtable; local 187 newtable = isc_mem_get(symtab->mctx, newsize * sizeof(eltlist_t)); 190 INIT_LIST(newtable[i]); 203 APPEND(newtable[hv % newsize], elt, link); 210 symtab->table = newtable;
|
| ht.c | 204 isc_ht_node_t **newtable = ht->table[ht->hindex]; local 227 node->next = newtable[hash]; 228 newtable[hash] = node;
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| badcache.c | 123 dns_bcentry_t **newtable, *bad, *next; local 168 newtable = isc_mem_get(bc->mctx, sizeof(dns_bcentry_t *) * newsize); 169 memset(newtable, 0, sizeof(dns_bcentry_t *) * newsize); 194 bad->next = newtable[bad->hashval % newsize]; 195 newtable[bad->hashval % newsize] = bad; 206 bc->table = newtable;
|
| zone.c | 18532 dns_keyfileio_t **newtable; local 18575 newtable = isc_mem_get(mgmt->mctx, sizeof(dns_keyfileio_t *) * newsize); 18576 memset(newtable, 0, sizeof(dns_keyfileio_t *) * newsize); 18583 kfio->next = newtable[hash]; 18584 newtable[hash] = kfio; 18591 mgmt->table = newtable;
|
| /src/external/lgpl3/gmp/dist/tune/ |
| many.pl | 769 my @newtable = @{$ENV{table2}}; 770 push @newtable, @table; 771 @table = @newtable;
|
| /src/external/mpl/bind/dist/lib/dns/ |
| rbt.c | 1518 dns_rbtnode_t **newtable = rbt->hashtable[rbt->hindex]; local 1543 node->hashnext = newtable[hash]; 1544 newtable[hash] = node;
|