Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/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 …]