Lines Matching refs:htsize
7598 unsigned int htsize; /* Number of buckets in the hash table */ member
22259 pNew->htsize = 0; in sqlite3HashInit()
22275 pH->htsize = 0; in sqlite3HashClear()
22343 if( new_size==pH->htsize ) return 0; in rehash()
22357 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); in rehash()
22443 h = strHash(pKey, nKey) % pH->htsize; in sqlite3HashFind()
22473 if( pH->htsize ){ in sqlite3HashInsert()
22474 h = strHash(pKey, nKey) % pH->htsize; in sqlite3HashInsert()
22497 if( pH->count>=10 && pH->count > 2*pH->htsize ){ in sqlite3HashInsert()
22499 assert( pH->htsize>0 ); in sqlite3HashInsert()
22500 h = strHash(pKey, nKey) % pH->htsize; in sqlite3HashInsert()
116393 int htsize; /* Number of buckets in the hash table */
123414 pNew->htsize = 0;
123430 pH->htsize = 0;
123554 pH->htsize = new_size;
123642 assert( (pH->htsize & (pH->htsize-1))==0 );
123643 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
123689 assert( (pH->htsize & (pH->htsize-1))==0 );
123690 h = hraw & (pH->htsize-1);
123702 if( (pH->htsize==0 && fts3Rehash(pH,8))
123703 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
123708 assert( pH->htsize>0 );
123723 assert( pH->htsize>0 );
123724 assert( (pH->htsize & (pH->htsize-1))==0 );
123725 h = hraw & (pH->htsize-1);