Lines Matching refs:new_ht
37001 struct _ht *new_ht; /* The new hash table */
37020 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
37023 if( new_ht==0 ) return 0;
37025 pH->ht = new_ht;
37026 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
37027 memset(new_ht, 0, new_size*sizeof(struct _ht));
37031 insertElement(pH, &new_ht[h], elem);
194395 struct _fts3ht *new_ht; /* The new hash table */
194400 new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) );
194401 if( new_ht==0 ) return 1;
194403 pH->ht = new_ht;
194409 fts3HashInsertElement(pH, &new_ht[h], elem);