Home | History | Annotate | Download | only in orig

Lines Matching defs:htsize

7587 ** There are Hash.htsize buckets.  Each bucket points to a spot in
7591 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
7598 unsigned int htsize; /* Number of buckets in the hash table */
22259 pNew->htsize = 0;
22275 pH->htsize = 0;
22343 if( new_size==pH->htsize ) return 0;
22357 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
22443 h = strHash(pKey, nKey) % pH->htsize;
22473 if( pH->htsize ){
22474 h = strHash(pKey, nKey) % pH->htsize;
22497 if( pH->count>=10 && pH->count > 2*pH->htsize ){
22499 assert( pH->htsize>0 );
22500 h = strHash(pKey, nKey) % pH->htsize;
116357 int htsize; /* Number of buckets in the hash table */
123366 pNew->htsize = 0;
123382 pH->htsize = 0;
123506 pH->htsize = new_size;
123594 assert( (pH->htsize & (pH->htsize-1))==0 );
123595 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
123641 assert( (pH->htsize & (pH->htsize-1))==0 );
123642 h = hraw & (pH->htsize-1);
123654 if( (pH->htsize==0 && fts3Rehash(pH,8))
123655 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
123660 assert( pH->htsize>0 );
123675 assert( pH->htsize>0 );
123676 assert( (pH->htsize & (pH->htsize-1))==0 );
123677 h = hraw & (pH->htsize-1);