Home
last modified time | relevance | path

Searched refs:m_table (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dhash-set.h41 : m_table (n, ggc, true, GATHER_STATISTICS, HASH_SET_ORIGIN PASS_MEM_STAT) {} in m_table() function
58 Key *e = m_table.find_slot_with_hash (k, Traits::hash (k), INSERT); in add()
71 return (m_table.find_slot_with_hash (k, Traits::hash (k), NO_INSERT) in contains()
73 Key &e = m_table.find_with_hash (k, Traits::hash (k)); in contains()
79 m_table.remove_elt_with_hash (k, Traits::hash (k)); in remove()
88 for (typename hash_table<Traits, Lazy>::iterator iter = m_table.begin (); in traverse()
89 iter != m_table.end (); ++iter) in traverse()
95 size_t elements () const { return m_table.elements (); } in elements()
99 void empty () { m_table.empty (); } in empty()
102 bool is_empty () const { return m_table.is_empty (); } in is_empty()
[all …]
Dhash-map.h142 : m_table (n, ggc, sanitize_eq_and_hash, gather_mem_stats, in class()
151 : m_table (h.m_table, ggc, sanitize_eq_and_hash, gather_mem_stats, in class()
170 hash_entry *e = m_table.find_slot_with_hash (k, Traits::hash (k), in class()
189 hash_entry &e = m_table.find_with_hash (k, Traits::hash (k)); in class()
199 hash_entry *e = m_table.find_slot_with_hash (k, Traits::hash (k), in class()
216 m_table.remove_elt_with_hash (k, Traits::hash (k)); in class()
227 for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); in class()
228 iter != m_table.end (); ++iter) in class()
237 for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); in class()
238 iter != m_table.end (); ++iter) in class()
[all …]
Dinput.h280 hash_map <location_hash, string_concat *> *m_table; in class() local
Dinput.cc1430 m_table = hash_map <location_hash, string_concat *>::create_ggc (64); in string_concat_db()
1452 m_table->put (key_loc, concat); in record_string_concatenation()
1477 string_concat **concat = m_table->get (key_loc); in get_string_concatenation()
DChangeLog-201926074 * hash-set.h: Pass new default argument to m_table.
31719 hash_set::m_table): Add Lazy to template params of hash_table.
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dbfd-target.c61 std::vector<target_section> m_table; variable
77 m_table); in xfer_partial()
87 return &m_table; in get_section_table()
92 m_table (build_section_table (abfd.get ())) in target_bfd()
Dtypeprint.c230 slot = htab_find_slot (m_table.get (), tdef, INSERT); in recursively_update()
263 slot = htab_find_slot (m_table.get (), tf, INSERT); in add_template_parameters()
272 : m_table (htab_create_alloc (10, hash_typedef_field, eq_typedef_field, in typedef_hash_table()
296 m_table.reset (htab_create_alloc (10, hash_typedef_field, eq_typedef_field, in typedef_hash_table()
298 htab_traverse_noresize (table.m_table.get (), copy_typedef_hash_element, in typedef_hash_table()
299 m_table.get ()); in typedef_hash_table()
320 slot = htab_find_slot (flags->global_typedefs->m_table.get (), &tf, INSERT); in find_global_typedef()
357 htab_t table = flags->local_typedefs->m_table.get (); in find_typedef()
Dtypeprint.h154 htab_up m_table; variable
DChangeLog-20204867 <m_table>: Now htab_up.