Home
last modified time | relevance | path

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

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dhash.c169 int (*xHash)(const void*,int); /* The hash function */ in rehash() local
177 xHash = hashFunction(pH->keyClass); in rehash()
179 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in rehash()
264 int (*xHash)(const void*,int); /* The hash function */ in sqliteHashFind() local
267 xHash = hashFunction(pH->keyClass); in sqliteHashFind()
268 assert( xHash!=0 ); in sqliteHashFind()
269 h = (*xHash)(pKey,nKey); in sqliteHashFind()
295 int (*xHash)(const void*,int); /* The hash function */ in sqliteHashInsert() local
298 xHash = hashFunction(pH->keyClass); in sqliteHashInsert()
299 assert( xHash!=0 ); in sqliteHashInsert()
[all …]
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c118071 int (*xHash)(const void*,int); /* The hash function */
118079 xHash = ftsHashFunction(pH->keyClass);
118081 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1);
118160 int (*xHash)(const void*,int); /* The hash function */
118163 xHash = ftsHashFunction(pH->keyClass);
118164 assert( xHash!=0 );
118165 h = (*xHash)(pKey,nKey);
118207 int (*xHash)(const void*,int); /* The hash function */
118210 xHash = ftsHashFunction(pH->keyClass);
118211 assert( xHash!=0 );
[all …]

Completed in 296 milliseconds