Home | History | Annotate | Download | only in list_update_map_

Lines Matching refs:p_l

49   entry_pointer p_l = find_imp(PB_DS_V2F(r_val));
51 if (p_l != 0)
54 return std::make_pair(point_iterator(&p_l->m_value), false);
59 p_l = allocate_new_entry(r_val, traits_base::m_no_throw_copies_indicator);
60 p_l->m_p_next = m_p_l;
61 m_p_l = p_l;
63 return std::make_pair(point_iterator(&p_l->m_value), true);
71 entry_pointer p_l = s_entry_allocator.allocate(1);
72 cond_dealtor_t cond(p_l);
73 new (const_cast<void* >(static_cast<const void* >(&p_l->m_value)))
78 init_entry_metadata(p_l, s_metadata_type_indicator);
79 return p_l;
87 entry_pointer p_l = s_entry_allocator.allocate(1);
88 new (&p_l->m_value) value_type(r_val);
90 init_entry_metadata(p_l, s_metadata_type_indicator);
91 return p_l;
98 init_entry_metadata(entry_pointer p_l, type_to_type<Metadata>)
99 { new (&p_l->m_update_metadata) Metadata(s_update_policy()); }