Searched refs:htsize (Results 1 - 1 of 1) sorted by relevance

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c7537 ** There are Hash.htsize buckets. Each bucket points to a spot in
7541 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
7548 unsigned int htsize; /* Number of buckets in the hash table */ member in struct:Hash
22198 pNew->htsize = 0;
22214 pH->htsize = 0;
22282 if( new_size==pH->htsize ) return 0;
22296 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
22382 h = strHash(pKey, nKey) % pH->htsize;
22412 if( pH->htsize ){
22413 h = strHash(pKey, nKey) % pH->htsize;
116097 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
[all...]

Completed in 315 milliseconds