44 deallocate_links_in_list(entry_pointer p_e)
 
   48       entry_pointer p_dealloc_e = p_e;
 
   50       s_entry_allocator.deallocate(p_dealloc_e, 1);
 
   55 inline typename PB_DS_CLASS_C_DEC::entry_pointer
 
   57 get_entry(const_reference r_val, true_type)
 
   60   entry_pointer p_e = s_entry_allocator.allocate(1);
 
   63   new (&p_e->m_value) value_type(r_val);
 
   68 inline typename PB_DS_CLASS_C_DEC::entry_pointer
 
   70 get_entry(const_reference r_val, false_type)
 
   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);
 
   85 rels_entry(entry_pointer p_e)
 
   88   p_e->m_value.~value_type();
 
   89   s_entry_allocator.deallocate(p_e, 1);