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

/external/sqlite/dist/orig/
H A Dsqlite3.c22336 struct _ht *new_ht; /* The new hash table */ local
22351 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
22354 if( new_ht==0 ) return 0;
22356 pH->ht = new_ht;
22357 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
22358 memset(new_ht, 0, new_size*sizeof(struct _ht));
22362 insertElement(pH, &new_ht[h], elem);
123497 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c22336 struct _ht *new_ht; /* The new hash table */ local
22351 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
22354 if( new_ht==0 ) return 0;
22356 pH->ht = new_ht;
22357 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
22358 memset(new_ht, 0, new_size*sizeof(struct _ht));
22362 insertElement(pH, &new_ht[h], elem);
123528 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]

Completed in 341 milliseconds