Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:HashElem

7043 typedef struct HashElem HashElem;
7069 HashElem
7072 HashElem *chain; /* Pointer to first entry with this hash */
7082 struct HashElem {
7083 HashElem *next, *prev; /* Next and previous elements in the table */
7101 ** HashElem *p;
12793 HashElem *p;
12795 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
21407 HashElem *elem; /* For looping over all elements of the table */
21416 HashElem *next_elem = elem->next;
21443 HashElem *pNew /* The element to be inserted */
21445 HashElem *pHead; /* First element already in pEntry */
21476 HashElem *elem, *next_elem; /* For looping over existing elements */
21510 static HashElem *findElementGivenHash(
21516 HashElem *elem; /* Used to loop thru the element list */
21541 HashElem* elem, /* The element to be removed from the pH */
21575 HashElem *elem; /* The element that matches key */
21606 HashElem *elem; /* Used to loop thru the element list */
21607 HashElem *new_elem; /* New element added to the pH */
21630 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
47274 HashElem *p;
75707 HashElem *k;
75925 HashElem *i;
78678 HashElem *i;
78714 HashElem *pElem;
80479 HashElem *k; /* For looping over tables in pDb */
81009 HashElem *pElem;
88509 HashElem *p;
88635 HashElem *x;
94642 HashElem *p;
107924 HashElem *i; /* Hash table iterator */