Searched refs:pH (Results 1 – 2 of 2) sorted by relevance
54 if( pH->ht ) sqliteFree(pH->ht); in sqliteHashClear()55 pH->ht = 0; in sqliteHashClear()174 if( pH->ht ) sqliteFree(pH->ht); in rehash()190 if( pH->first ) pH->first->prev = elem; in rehash()266 if( pH==0 || pH->ht==0 ) return 0; in sqliteHashFind()270 assert( (pH->htsize & (pH->htsize-1))==0 ); in sqliteHashFind()301 assert( (pH->htsize & (pH->htsize-1))==0 ); in sqliteHashInsert()328 if( pH->htsize==0 ) rehash(pH,8); in sqliteHashInsert()334 if( pH->count > pH->htsize ){ in sqliteHashInsert()335 rehash(pH,pH->htsize*2); in sqliteHashInsert()[all …]
21790 if( pH->first ){ pH->first->prev = pNew; } in insertElement()21965 if( pH->count>=10 && pH->count > 2*pH->htsize ){ in sqlite3HashInsert()21966 if( rehash(pH, pH->count*2) ){ in sqlite3HashInsert()21972 insertElement(pH, &pH->ht[h], new_elem); in sqlite3HashInsert()118053 if( pH->first ){ pH->first->prev = pNew; }118162 if( pH==0 || pH->ht==0 ) return 0;118166 assert( (pH->htsize & (pH->htsize-1))==0 );118213 assert( (pH->htsize & (pH->htsize-1))==0 );118226 if( (pH->htsize==0 && fts3Rehash(pH,8))118227 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))[all …]
Completed in 314 milliseconds