Searched defs:new_tab (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/libnisdb/ |
H A D | db_index_entry.cc | 126 /* Relocate bucket starting with this entry to new hashtable 'new_tab'. */ 128 db_index_entry::relocate(db_index_entry_p *new_tab, unsigned long hashsize) argument 134 hp = &new_tab[np->hashval % hashsize];
|
H A D | db_dictionary.cc | 221 /* Relocate bucket starting with this entry to new hashtable 'new_tab'. */ 224 db_table_desc_p *new_tab, unsigned long hashsize) 230 hp = &new_tab[np->hashval % hashsize]; 223 relocate_bucket(db_table_desc* bucket, db_table_desc_p *new_tab, unsigned long hashsize) argument
|
/illumos-gate/usr/src/uts/common/inet/kssl/ |
H A D | ksslioctl.c | 598 kssl_entry_t **new_tab, **old_tab; local 608 new_tab = kmem_zalloc(allocsize, KM_SLEEP); 612 kmem_free(new_tab, allocsize); 617 bcopy(kssl_entry_tab, new_tab, oldtabsize); 620 kssl_entry_tab = new_tab;
|
/illumos-gate/usr/src/uts/common/dtrace/ |
H A D | dtrace.c | 7511 dtrace_hashbucket_t **new_tab, *bucket, *next; local 7515 new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP); 7525 bucket->dthb_next = new_tab[ndx]; 7526 new_tab[ndx] = bucket; 7531 hash->dth_tab = new_tab;
|
Completed in 102 milliseconds