Home | History | Annotate | Download | only in dist

Lines Matching refs:new_ht

21126   struct _ht *new_ht;            /* The new hash table */
21141 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
21144 if( new_ht==0 ) return 0;
21146 pH->ht = new_ht;
21147 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21148 memset(new_ht, 0, new_size*sizeof(struct _ht));
21152 insertElement(pH, &new_ht[h], elem);
113036 struct _fts3ht *new_ht; /* The new hash table */
113041 new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) );
113042 if( new_ht==0 ) return 1;
113044 pH->ht = new_ht;
113050 fts3HashInsertElement(pH, &new_ht[h], elem);