Home | History | Annotate | Download | only in dist

Lines Matching defs:HashElem

7574 typedef struct HashElem HashElem;
7600 HashElem *first; /* The first element of the array */
7603 HashElem *chain; /* Pointer to first entry with this hash */
7613 struct HashElem {
7614 HashElem *next, *prev; /* Next and previous elements in the table */
7632 ** HashElem *p;
13458 HashElem *p;
13460 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
22268 HashElem *elem; /* For looping over all elements of the table */
22277 HashElem *next_elem = elem->next;
22304 HashElem *pNew /* The element to be inserted */
22306 HashElem *pHead; /* First element already in pEntry */
22337 HashElem *elem, *next_elem; /* For looping over existing elements */
22371 static HashElem *findElementGivenHash(
22377 HashElem *elem; /* Used to loop thru the element list */
22402 HashElem* elem, /* The element to be removed from the pH */
22436 HashElem *elem; /* The element that matches key */
22467 HashElem *elem; /* Used to loop thru the element list */
22468 HashElem *new_elem; /* New element added to the pH */
22491 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
49547 HashElem *p;
80016 HashElem *k;
80367 HashElem *i;
83068 HashElem *i;
83104 HashElem *pElem;
84929 HashElem *k; /* For looping over tables in pDb */
85459 HashElem *pElem;
93110 HashElem *p;
93236 HashElem *x;
99406 HashElem *p;
113199 HashElem *i; /* Hash table iterator */