Lines Matching refs:HashElem
36 HashElem *elem; /* For looping over all elements of the table */ in sqlite3HashClear()
45 HashElem *next_elem = elem->next; in sqlite3HashClear()
75 HashElem *pNew /* The element to be inserted */ in insertElement()
77 HashElem *pHead; /* First element already in pEntry */ in insertElement()
108 HashElem *elem, *next_elem; /* For looping over existing elements */ in rehash()
147 static HashElem *findElementWithHash( in findElementWithHash()
152 HashElem *elem; /* Used to loop thru the element list */ in findElementWithHash()
155 static HashElem nullElement = { 0, 0, 0, 0 }; in findElementWithHash()
184 HashElem* elem, /* The element to be removed from the pH */ in removeElementGivenHash()
239 HashElem *elem; /* Used to loop thru the element list */ in sqlite3HashInsert()
240 HashElem *new_elem; /* New element added to the pH */ in sqlite3HashInsert()
256 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) ); in sqlite3HashInsert()