Lines Matching refs:next
58 HashElem *next_elem = elem->next; in sqliteHashClear()
180 next_elem = elem->next; in rehash()
183 elem->next = x; in rehash()
185 if( x->prev ) x->prev->next = elem; in rehash()
189 elem->next = pH->first; in rehash()
221 elem = elem->next; in findElementGivenHash()
236 elem->prev->next = elem->next; in removeElementGivenHash()
238 pH->first = elem->next; in removeElementGivenHash()
240 if( elem->next ){ in removeElementGivenHash()
241 elem->next->prev = elem->prev; in removeElementGivenHash()
244 pH->ht[h].chain = elem->next; in removeElementGivenHash()
341 new_elem->next = elem; in sqliteHashInsert()
343 if( elem->prev ){ elem->prev->next = new_elem; } in sqliteHashInsert()
347 new_elem->next = pH->first; in sqliteHashInsert()