Searched refs:htsize (Results 1 – 2 of 2) sorted by relevance
7359 unsigned int htsize; /* Number of buckets in the hash table */ member21824 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 …]
14249 unsigned int htsize; /* Number of buckets in the hash table */ member36359 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 …]