Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts3/
H A Dfts3_hash.c199 int (*xHash)(const void*,int); /* The hash function */ in fts3Rehash() local
207 xHash = ftsHashFunction(pH->keyClass); in fts3Rehash()
209 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in fts3Rehash()
288 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts3HashFindElem() local
291 xHash = ftsHashFunction(pH->keyClass); in sqlite3Fts3HashFindElem()
292 assert( xHash!=0 ); in sqlite3Fts3HashFindElem()
293 h = (*xHash)(pKey,nKey); in sqlite3Fts3HashFindElem()
335 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts3HashInsert() local
338 xHash = ftsHashFunction(pH->keyClass); in sqlite3Fts3HashInsert()
339 assert( xHash!=0 ); in sqlite3Fts3HashInsert()
[all …]
/sqlite-3.40.0/ext/fts2/
H A Dfts2_hash.c199 int (*xHash)(const void*,int); /* The hash function */ in rehash() local
207 xHash = hashFunction(pH->keyClass); in rehash()
209 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in rehash()
288 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts2HashFind() local
291 xHash = hashFunction(pH->keyClass); in sqlite3Fts2HashFind()
292 assert( xHash!=0 ); in sqlite3Fts2HashFind()
293 h = (*xHash)(pKey,nKey); in sqlite3Fts2HashFind()
324 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts2HashInsert() local
327 xHash = hashFunction(pH->keyClass); in sqlite3Fts2HashInsert()
328 assert( xHash!=0 ); in sqlite3Fts2HashInsert()
[all …]
/sqlite-3.40.0/ext/fts1/
H A Dft_hash.c234 int (*xHash)(const void*,int); /* The hash function */ in rehash() local
242 xHash = hashFunction(pH->keyClass); in rehash()
244 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in rehash()
323 int (*xHash)(const void*,int); /* The hash function */ in HashFind() local
326 xHash = hashFunction(pH->keyClass); in HashFind()
327 assert( xHash!=0 ); in HashFind()
328 h = (*xHash)(pKey,nKey); in HashFind()
354 int (*xHash)(const void*,int); /* The hash function */ in HashInsert() local
357 xHash = hashFunction(pH->keyClass); in HashInsert()
358 assert( xHash!=0 ); in HashInsert()
[all …]
H A Dfts1_hash.c192 int (*xHash)(const void*,int); /* The hash function */ in rehash() local
200 xHash = hashFunction(pH->keyClass); in rehash()
202 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); in rehash()
281 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts1HashFind() local
284 xHash = hashFunction(pH->keyClass); in sqlite3Fts1HashFind()
285 assert( xHash!=0 ); in sqlite3Fts1HashFind()
286 h = (*xHash)(pKey,nKey); in sqlite3Fts1HashFind()
317 int (*xHash)(const void*,int); /* The hash function */ in sqlite3Fts1HashInsert() local
320 xHash = hashFunction(pH->keyClass); in sqlite3Fts1HashInsert()
321 assert( xHash!=0 ); in sqlite3Fts1HashInsert()
[all …]