Home | History | Annotate | Download | only in list_update_map_

Lines Matching refs:m_p_next

52       entry_pointer p_next = m_p_l->m_p_next;
59 while (p_l->m_p_next != NULL)
60 if (s_eq_fn(r_key, PB_DS_V2F(p_l->m_p_next->m_value)))
66 p_l = p_l->m_p_next;
88 entry_pointer p_next = m_p_l->m_p_next;
98 while (p_l->m_p_next != NULL)
100 if (pred(p_l->m_p_next->m_value))
106 p_l = p_l->m_p_next;
120 _GLIBCXX_DEBUG_ASSERT(p_l->m_p_next != NULL);
121 entry_pointer p_next_l = p_l->m_p_next->m_p_next;
122 actual_erase_entry(p_l->m_p_next);
123 p_l->m_p_next = p_next_l;