Lines Matching refs:htsize
6837 ** There are Hash.htsize buckets. Each bucket points to a spot in
6841 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
6848 unsigned int htsize; /* Number of buckets in the hash table */
21042 pNew->htsize = 0;
21058 pH->htsize = 0;
21126 if( new_size==pH->htsize ) return 0;
21140 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21226 h = strHash(pKey, nKey) % pH->htsize;
21256 if( pH->htsize ){
21257 h = strHash(pKey, nKey) % pH->htsize;
21280 if( pH->count>=10 && pH->count > 2*pH->htsize ){
21282 assert( pH->htsize>0 );
21283 h = strHash(pKey, nKey) % pH->htsize;
108254 int htsize; /* Number of buckets in the hash table */
112874 pNew->htsize = 0;
112890 pH->htsize = 0;
113014 pH->htsize = new_size;
113102 assert( (pH->htsize & (pH->htsize-1))==0 );
113103 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
113149 assert( (pH->htsize & (pH->htsize-1))==0 );
113150 h = hraw & (pH->htsize-1);
113162 if( (pH->htsize==0 && fts3Rehash(pH,8))
113163 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
113168 assert( pH->htsize>0 );
113183 assert( pH->htsize>0 );
113184 assert( (pH->htsize & (pH->htsize-1))==0 );
113185 h = hraw & (pH->htsize-1);