Searched refs:m_table (Results 1 – 4 of 4) sorted by relevance
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | hash-map.h | 123 : m_table (n, ggc, gather_mem_stats, HASH_MAP_ORIGIN PASS_MEM_STAT) {} in class() 128 : m_table (h.m_table, ggc, gather_mem_stats, in class() 147 hash_entry *e = m_table.find_slot_with_hash (k, Traits::hash (k), in class() 161 hash_entry &e = m_table.find_with_hash (k, Traits::hash (k)); in class() 171 hash_entry *e = m_table.find_slot_with_hash (k, Traits::hash (k), in class() 185 m_table.remove_elt_with_hash (k, Traits::hash (k)); in class() 195 for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); in class() 196 iter != m_table.end (); ++iter) in class() 204 for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); in class() 205 iter != m_table.end (); ++iter) in class() [all …]
|
| HD | hash-set.h | 30 : m_table (n, ggc, GATHER_STATISTICS, HASH_SET_ORIGIN PASS_MEM_STAT) {} in m_table() function 47 Key *e = m_table.find_slot_with_hash (k, Traits::hash (k), INSERT); in add() 59 Key &e = m_table.find_with_hash (k, Traits::hash (k)); in contains() 65 m_table.remove_elt_with_hash (k, Traits::hash (k)); in remove() 74 for (typename hash_table<Traits>::iterator iter = m_table.begin (); in traverse() 75 iter != m_table.end (); ++iter) in traverse() 81 size_t elements () const { return m_table.elements (); } in elements() 85 void empty () { m_table.empty (); } in empty() 117 iterator begin () const { return iterator (m_table.begin ()); } in begin() 118 iterator end () const { return iterator (m_table.end ()); } in end() [all …]
|
| HD | input.h | 154 hash_map <location_hash, string_concat *> *m_table; in class() local
|
| HD | input.c | 1262 m_table = hash_map <location_hash, string_concat *>::create_ggc (64); in string_concat_db() 1279 m_table->put (key_loc, concat); in record_string_concatenation() 1300 string_concat **concat = m_table->get (key_loc); in get_string_concatenation()
|