Lines Matching refs:HashElem
49 HashElem *elem; /* For looping over all elements of the table */ in sqliteHashClear()
58 HashElem *next_elem = elem->next; in sqliteHashClear()
167 HashElem *elem, *next_elem; /* For looping over existing elements */ in rehash()
168 HashElem *x; /* Element being copied to new hash table */ in rehash()
203 static HashElem *findElementGivenHash( in findElementGivenHash()
209 HashElem *elem; /* Used to loop thru the element list */ in findElementGivenHash()
232 HashElem* elem, /* The element to be removed from the pH */ in removeElementGivenHash()
263 HashElem *elem; /* The element that matches key */ in sqliteHashFind()
293 HashElem *elem; /* Used to loop thru the element list */ in sqliteHashInsert()
294 HashElem *new_elem; /* New element added to the pH */ in sqliteHashInsert()
314 new_elem = (HashElem*)sqliteMalloc( sizeof(HashElem) ); in sqliteHashInsert()