Lines Matching refs:count
26 pNew->count = 0; in sqlite3HashInit()
49 pH->count = 0; in sqlite3HashClear()
79 pHead = pEntry->count ? pEntry->chain : 0; in insertElement()
80 pEntry->count++; in insertElement()
153 unsigned int count; /* Number of elements left to test */ in findElementWithHash() local
162 count = pEntry->count; in findElementWithHash()
166 count = pH->count; in findElementWithHash()
169 while( count-- ){ in findElementWithHash()
201 assert( pEntry->count>0 ); in removeElementGivenHash()
202 pEntry->count--; in removeElementGivenHash()
205 pH->count--; in removeElementGivenHash()
206 if( pH->count==0 ){ in removeElementGivenHash()
208 assert( pH->count==0 ); in removeElementGivenHash()
260 pH->count++; in sqlite3HashInsert()
261 if( pH->count>=10 && pH->count > 2*pH->htsize ){ in sqlite3HashInsert()
262 if( rehash(pH, pH->count*2) ){ in sqlite3HashInsert()