Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dhash.c166 struct _ht *new_ht; /* The new hash table */ in rehash() local
172 new_ht = (struct _ht *)sqliteMalloc( new_size*sizeof(struct _ht) ); in rehash()
173 if( new_ht==0 ) return; in rehash()
175 pH->ht = new_ht; in rehash()
181 x = new_ht[h].chain; in rehash()
194 new_ht[h].chain = elem; in rehash()
195 new_ht[h].count++; in rehash()