Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts1/
H A Dfts1_hash.c79 fts1HashElem *next_elem = elem->next; in sqlite3Fts1HashClear()
164 fts1HashElem *pNew /* The element to be inserted */ in insertElement()
166 fts1HashElem *pHead; /* First element already in pEntry */ in insertElement()
191 fts1HashElem *elem, *next_elem; /* For looping over existing elements */ in rehash()
212 static fts1HashElem *findElementGivenHash( in findElementGivenHash()
218 fts1HashElem *elem; /* Used to loop thru the element list */ in findElementGivenHash()
242 fts1HashElem* elem, /* The element to be removed from the pH */ in removeElementGivenHash()
280 fts1HashElem *elem; /* The element that matches key */ in sqlite3Fts1HashFind()
315 fts1HashElem *elem; /* Used to loop thru the element list */ in sqlite3Fts1HashInsert()
316 fts1HashElem *new_elem; /* New element added to the pH */ in sqlite3Fts1HashInsert()
[all …]
H A Dfts1_hash.h22 typedef struct fts1HashElem fts1HashElem; typedef
36 fts1HashElem *first; /* The first element of the array */
42 fts1HashElem *chain; /* Pointer to first entry with this hash */
52 struct fts1HashElem { struct
53 fts1HashElem *next, *prev; /* Next and previous elements in the table */ argument
H A Dfts1.c3156 fts1HashElem *e; in fulltextUpdate()