HomeSort by relevance Sort by last modified time
    Searched refs:fts2Hash (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.h 21 typedef struct fts2Hash fts2Hash;
32 struct fts2Hash {
74 void sqlite3Fts2HashInit(fts2Hash*, int keytype, int copyKey);
75 void *sqlite3Fts2HashInsert(fts2Hash*, const void *pKey, int nKey, void *pData);
76 void *sqlite3Fts2HashFind(const fts2Hash*, const void *pKey, int nKey);
77 void sqlite3Fts2HashClear(fts2Hash*);
91 ** fts2Hash h;
fts2_hash.c 59 void sqlite3Fts2HashInit(fts2Hash *pNew, int keyClass, int copyKey){
74 void sqlite3Fts2HashClear(fts2Hash *pH){
167 fts2Hash *pH, /* The complete hash table */
194 static void rehash(fts2Hash *pH, int new_size){
218 const fts2Hash *pH, /* The pH to be searched */
246 fts2Hash *pH, /* The pH containing "elem" */
283 void *sqlite3Fts2HashFind(const fts2Hash *pH, const void *pKey, int nKey){
313 fts2Hash *pH, /* The hash table to insert into */
fts2_tokenizer.c 65 fts2Hash *pHash;
72 pHash = (fts2Hash *)sqlite3_user_data(context);
139 fts2Hash *pHash;
172 pHash = (fts2Hash *)sqlite3_user_data(context);
341 fts2Hash *pHash,
fts2.c     [all...]

Completed in 3118 milliseconds