Home | History | Annotate | Download | only in cc_hash_table_map_

Lines Matching refs:p_e

44 deallocate_links_in_list(entry_pointer p_e)
46 while (p_e != 0)
48 entry_pointer p_dealloc_e = p_e;
49 p_e = p_e->m_p_next;
60 entry_pointer p_e = s_entry_allocator.allocate(1);
63 new (&p_e->m_value) value_type(r_val);
64 return p_e;
73 entry_pointer p_e = s_entry_allocator.allocate(1);
74 cond_dealtor_t cond(p_e);
77 new (&p_e->m_value) value_type(r_val);
79 return p_e;
85 rels_entry(entry_pointer p_e)
88 p_e->m_value.~value_type();
89 s_entry_allocator.deallocate(p_e, 1);