Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c7359 unsigned int htsize; /* Number of buckets in the hash table */ member
21824 pNew->htsize = 0; in sqlite3HashInit()
21840 pH->htsize = 0; in sqlite3HashClear()
21908 if( new_size==pH->htsize ) return 0; in rehash()
21922 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); in rehash()
22008 h = strHash(pKey, nKey) % pH->htsize; in sqlite3HashFind()
22038 if( pH->htsize ){ in sqlite3HashInsert()
22039 h = strHash(pKey, nKey) % pH->htsize; in sqlite3HashInsert()
22062 if( pH->count>=10 && pH->count > 2*pH->htsize ){ in sqlite3HashInsert()
22064 assert( pH->htsize>0 ); in sqlite3HashInsert()
[all …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c14249 unsigned int htsize; /* Number of buckets in the hash table */ member
36359 pNew->htsize = 0;
36375 pH->htsize = 0;
36446 if( new_size==pH->htsize ) return 0;
36464 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
36491 h = strHash(pKey) % pH->htsize;
36594 if( pH->count>=10 && pH->count > 2*pH->htsize ){
36596 assert( pH->htsize>0 );
36597 h = strHash(pKey) % pH->htsize;
183458 int htsize; /* Number of buckets in the hash table */
[all …]