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

/external/sqlite/dist/
H A Dsqlite3.c19614 struct _ht *new_ht; /* The new hash table */ local
19629 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
19632 if( new_ht==0 ) return 0;
19634 pH->ht = new_ht;
19635 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
19636 memset(new_ht, 0, new_size*sizeof(struct _ht));
19640 insertElement(pH, &new_ht[h], elem);
102321 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]

Completed in 286 milliseconds