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

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c22275 struct _ht *new_ht; /* The new hash table */ local
22290 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
22293 if( new_ht==0 ) return 0;
22295 pH->ht = new_ht;
22296 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
22297 memset(new_ht, 0, new_size*sizeof(struct _ht));
22301 insertElement(pH, &new_ht[h], elem);
123117 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]

Completed in 500 milliseconds