Home
last modified time | relevance | path

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

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dhash.c40 new->htsize = 0; in sqliteHashInit()
56 pH->htsize = 0; in sqliteHashClear()
176 pH->htsize = new_size; in rehash()
270 assert( (pH->htsize & (pH->htsize-1))==0 ); in sqliteHashFind()
301 assert( (pH->htsize & (pH->htsize-1))==0 ); in sqliteHashInsert()
302 h = hraw & (pH->htsize-1); in sqliteHashInsert()
329 if( pH->htsize==0 ){ in sqliteHashInsert()
334 if( pH->count > pH->htsize ){ in sqliteHashInsert()
335 rehash(pH,pH->htsize*2); in sqliteHashInsert()
337 assert( (pH->htsize & (pH->htsize-1))==0 ); in sqliteHashInsert()
[all …]
H A Dhash.h37 int htsize; /* Number of buckets in the hash table */ member
/PHP-5.3/ext/dom/
H A Ddom_iterators.c87 int htsize; in php_dom_libxml_hash_iter() local
89 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { in php_dom_libxml_hash_iter()
108 int htsize; in php_dom_libxml_notation_iter() local
110 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { in php_dom_libxml_notation_iter()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c21727 pNew->htsize = 0; in sqlite3HashInit()
21743 pH->htsize = 0; in sqlite3HashClear()
21941 if( pH->htsize ){ in sqlite3HashInsert()
117938 pNew->htsize = 0;
117954 pH->htsize = 0;
118078 pH->htsize = new_size;
118166 assert( (pH->htsize & (pH->htsize-1))==0 );
118213 assert( (pH->htsize & (pH->htsize-1))==0 );
118227 || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2))
118232 assert( pH->htsize>0 );
[all …]

Completed in 251 milliseconds