Home | History | Annotate | Download | only in list_update_map_

Lines Matching refs:p_l

58   entry_pointer p_l = m_p_l;
59 while (p_l->m_p_next != 0)
60 if (s_eq_fn(r_key, PB_DS_V2F(p_l->m_p_next->m_value)))
62 erase_next(p_l);
66 p_l = p_l->m_p_next;
97 entry_pointer p_l = m_p_l;
98 while (p_l->m_p_next != 0)
100 if (pred(p_l->m_p_next->m_value))
103 erase_next(p_l);
106 p_l = p_l->m_p_next;
116 erase_next(entry_pointer p_l)
118 _GLIBCXX_DEBUG_ASSERT(p_l != 0);
119 _GLIBCXX_DEBUG_ASSERT(p_l->m_p_next != 0);
120 entry_pointer p_next_l = p_l->m_p_next->m_p_next;
121 actual_erase_entry(p_l->m_p_next);
122 p_l->m_p_next = p_next_l;
128 actual_erase_entry(entry_pointer p_l)
130 _GLIBCXX_DEBUG_ONLY(debug_base::erase_existing(PB_DS_V2F(p_l->m_value));)
131 p_l->~entry();
132 s_entry_allocator.deallocate(p_l, 1);