Lines Matching defs:htsize
13920 ** There are Hash.htsize buckets. Each bucket points to a spot in
13924 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
13931 unsigned int htsize; /* Number of buckets in the hash table */
35344 pNew->htsize = 0;
35360 pH->htsize = 0;
35431 if( new_size==pH->htsize ) return 0;
35449 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
35476 h = strHash(pKey) % pH->htsize;
35578 if( pH->count>=10 && pH->count > 2*pH->htsize ){
35580 assert( pH->htsize>0 );
35581 h = strHash(pKey) % pH->htsize;
179243 int htsize; /* Number of buckets in the hash table */
187681 pNew->htsize = 0;
187697 pH->htsize = 0;
187821 pH->htsize = new_size;
187909 assert( (pH->htsize & (pH->htsize-1))==0 );
187910 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
187956 assert( (pH->htsize & (pH->htsize-1))==0 );
187957 h = hraw & (pH->htsize-1);
187969 if( (pH->htsize==0 && fts3Rehash(pH,8))
187970 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
187975 assert( pH->htsize>0 );
187990 assert( pH->htsize>0 );
187991 assert( (pH->htsize & (pH->htsize-1))==0 );
187992 h = hraw & (pH->htsize-1);