Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dhash.c172 int (*xHash)(const void*,int); /* The hash function */ in rehash() local
180 xHash = hashFunction(pH->keyClass); in rehash()
182 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in rehash()
267 int (*xHash)(const void*,int); /* The hash function */ in sqliteHashFind() local
270 xHash = hashFunction(pH->keyClass); in sqliteHashFind()
271 assert( xHash!=0 ); in sqliteHashFind()
272 h = (*xHash)(pKey,nKey); in sqliteHashFind()
298 int (*xHash)(const void*,int); /* The hash function */ in sqliteHashInsert() local
301 xHash = hashFunction(pH->keyClass); in sqliteHashInsert()
302 assert( xHash!=0 ); in sqliteHashInsert()
[all …]