Lines Matching refs:htsize
12476 unsigned int htsize; /* Number of buckets in the hash table */ member
30112 pNew->htsize = 0;
30128 pH->htsize = 0;
30199 if( new_size==pH->htsize ) return 0;
30217 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
30244 h = strHash(pKey) % pH->htsize;
30346 if( pH->count>=10 && pH->count > 2*pH->htsize ){
30348 assert( pH->htsize>0 );
30349 h = strHash(pKey) % pH->htsize;
148450 int htsize; /* Number of buckets in the hash table */
156719 pNew->htsize = 0;
156735 pH->htsize = 0;
156859 pH->htsize = new_size;
156947 assert( (pH->htsize & (pH->htsize-1))==0 );
156948 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
156994 assert( (pH->htsize & (pH->htsize-1))==0 );
156995 h = hraw & (pH->htsize-1);
157007 if( (pH->htsize==0 && fts3Rehash(pH,8))
157008 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
157013 assert( pH->htsize>0 );
157028 assert( pH->htsize>0 );
157029 assert( (pH->htsize & (pH->htsize-1))==0 );
157030 h = hraw & (pH->htsize-1);