Home | History | Annotate | Download | only in orig

Lines Matching refs:new_ht

22336   struct _ht *new_ht;            /* The new hash table */
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 */
123502 new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) );
123503 if( new_ht==0 ) return 1;
123505 pH->ht = new_ht;
123511 fts3HashInsertElement(pH, &new_ht[h], elem);