Home
last modified time | relevance | path

Searched refs:new_tab (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_index_entry.cc126 db_index_entry::relocate(db_index_entry_p *new_tab, unsigned long hashsize) in relocate() argument
132 hp = &new_tab[np->hashval % hashsize]; in relocate()
H A Ddb_dictionary.cc227 db_table_desc_p *new_tab, unsigned long hashsize) in relocate_bucket() argument
233 hp = &new_tab[np->hashval % hashsize]; in relocate_bucket()
/illumos-gate/usr/src/common/nvpair/
H A Dnvpair.c372 i_nvp_t **new_tab = nv_mem_zalloc(priv, new_size * sizeof (i_nvp_t *)); in nvt_resize() local
373 if (new_tab == NULL) in nvt_resize()
386 e->nvi_hashtable_next = new_tab[index]; in nvt_resize()
387 new_tab[index] = e; in nvt_resize()
398 priv->nvp_hashtable = new_tab; in nvt_resize()
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c7593 dtrace_hashbucket_t **new_tab, *bucket, *next; in dtrace_hash_resize() local
7597 new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP); in dtrace_hash_resize()
7607 bucket->dthb_next = new_tab[ndx]; in dtrace_hash_resize()
7608 new_tab[ndx] = bucket; in dtrace_hash_resize()
7613 hash->dth_tab = new_tab; in dtrace_hash_resize()