Searched refs:const_iterator (Results 1 - 25 of 84) sorted by relevance

1234

/gem5/src/cpu/
H A Dutils.hh88 isAnyActiveElement(const std::vector<bool>::const_iterator& it_start,
89 const std::vector<bool>::const_iterator& it_end)
H A Dpc_event.hh86 typedef map_t::const_iterator const_iterator; typedef in class:PCEventQueue
90 typedef std::pair<const_iterator, const_iterator> const_range_t;
H A Dfunc_unit.hh73 typedef std::vector<OpDesc *>::const_iterator OPDDiterator;
74 typedef std::vector<FUDesc *>::const_iterator FUDDiterator;
/gem5/src/systemc/ext/core/
H A Dsc_attr.hh81 typedef std::vector<elem_type>::const_iterator const_iterator; typedef in class:sc_core::sc_attr_cltn
84 const_iterator begin() const;
86 const_iterator end() const;
/gem5/src/mem/cache/prefetch/
H A Dassociative_set.hh200 using const_iterator = typename std::vector<Entry>::const_iterator;
226 const_iterator begin() const
236 const_iterator end() const
/gem5/src/base/loader/
H A Dsymtab.hh54 upperBound(Addr addr, ATable::const_iterator &iter) const
86 ATable::const_iterator i = addrTable.find(address);
99 STable::const_iterator i = symbolTable.find(symbol);
119 ATable::const_iterator i;
135 ATable::const_iterator i;
149 ATable::const_iterator i;
162 ATable::const_iterator i;
/gem5/src/unittest/
H A Dnmtest.cc57 SymbolTable::ATable::const_iterator i = symtab.getAddrTable().begin();
58 SymbolTable::ATable::const_iterator end = symtab.getAddrTable().end();
/gem5/src/base/
H A Daddr_range_map.hh69 typedef typename RangeMap::const_iterator const_iterator; typedef in class:AddrRangeMap
81 const_iterator
102 const_iterator
123 const_iterator
166 const_iterator
178 const_iterator
276 const_iterator
H A Daddr_range_map.test.cc51 AddrRangeMap<int>::const_iterator i;
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_attribute.h84 typedef std::vector<elem_type>::const_iterator const_iterator; typedef in class:sc_core::sc_attr_cltn
117 const_iterator begin() const
123 const_iterator end() const
H A Dsc_phase_callback_registry.h213 typedef single_storage_type::const_iterator it_type;
232 typedef single_storage_type::const_iterator it_type;
250 typedef single_storage_type::const_iterator it_type;
/gem5/src/sim/
H A Dsim_object.cc156 SimObjectList::const_iterator i = simObjectList.begin();
157 SimObjectList::const_iterator end = simObjectList.end();
176 SimObjectList::const_iterator i = simObjectList.begin();
177 SimObjectList::const_iterator end = simObjectList.end();
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_pvector.h56 typedef const T* const_iterator; typedef in class:sc_core::sc_pvector
58 // typedef typename ::std::vector<T>::const_iterator const_iterator;
80 const_iterator begin() const
81 { return (const_iterator) ADDR_ACCESS(0); }
86 const_iterator end() const
88 return static_cast<const_iterator> (ADDR_ACCESS(m_vector.size()));
H A Dsc_vector.h107 typedef storage_type::const_iterator const_iterator; typedef in class:sc_core::sc_vector_base
143 const_iterator begin() const { return vec_.begin(); }
144 const_iterator end() const { return vec_.end(); }
256 { typedef typename storage_type::const_iterator type; };
259 typedef sc_vector_iter< const_plain_type, const_policy > const_iterator; typedef in class:sc_core::sc_vector_iter
336 typedef sc_vector_iter< const element_type > const_iterator; typedef in class:sc_core::sc_vector
380 const_iterator begin() const { return base_type::begin(); }
381 const_iterator end() const { return base_type::end(); }
383 const_iterator cbegi
446 , sc_member_access<const T, const MT> > const_iterator; typedef in class:sc_core::sc_vector_assembly
[all...]
/gem5/ext/nomali/lib/
H A Dtypes.hh105 typedef vector_t::const_iterator const_iterator; typedef in class:NoMali::RegVector
149 const_iterator begin() const noexcept { return vector.begin(); }
150 const_iterator cbegin() const noexcept { return vector.cbegin(); }
153 const_iterator end() const noexcept { return vector.end(); }
154 const_iterator cend() const noexcept { return vector.cend(); }
/gem5/src/dev/net/
H A Dpktfifo.hh84 typedef fifo_list::const_iterator const_iterator; typedef in class:PacketFifo
117 const_iterator begin() const { return fifo.begin(); }
118 const_iterator end() const { return fifo.end(); }
179 int countPacketsBefore(const_iterator i) const
186 int countPacketsAfter(const_iterator i) const
/gem5/ext/drampower/src/
H A DParametrisable.cc98 for (vector<Parameter>::const_iterator p = parameters.begin();
107 for (vector<Parameter>::const_iterator p = parameters.begin();
125 for (vector<Parameter>::const_iterator p = parameters.begin();
/gem5/src/mem/ruby/structures/
H A DTimerTable.cc107 AddressMap::const_iterator i = m_map.begin();
108 AddressMap::const_iterator end = m_map.end();
H A DPersistentTable.cc100 AddressMap::const_iterator i = m_map.find(address);
121 AddressMap::const_iterator i = m_map.find(address);
131 AddressMap::const_iterator i = m_map.find(address);
172 AddressMap::const_iterator i = m_map.find(address);
184 AddressMap::const_iterator i = m_map.find(address);
/gem5/src/systemc/core/
H A Dsc_attr.cc49 sc_attr_cltn::const_iterator
61 sc_attr_cltn::const_iterator
/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh301 typedef typename std::vector<void *>::const_iterator type;
447 typedef sc_vector_iter<const T> const_iterator; typedef in class:sc_core::sc_vector
516 const_iterator begin() const { return objs.begin(); }
517 const_iterator end() const { return objs.end(); }
518 const_iterator cbegin() const { return objs.begin(); }
519 const_iterator cend() const { return objs.end(); }
619 const T, sc_member_access<const T, const MT> > const_iterator; typedef in class:sc_core::sc_vector_assembly
629 const_iterator
632 return const_iterator(vec_->begin().it_, ptr_);
634 const_iterator
[all...]
/gem5/src/systemc/tests/systemc/kernel/sc_attribute/test01/
H A Dtest01.cpp65 sc_attr_cltn::const_iterator it = attrs.begin();
/gem5/src/systemc/tests/systemc/kernel/sc_object/test01/
H A Dtest01.cpp67 sc_attr_cltn::const_iterator it = att_cltn.begin();
/gem5/ext/googletest/googletest/src/
H A Dgtest-typed-test.cc62 typedef RegisteredTestsMap::const_iterator RegisteredTestIter;
70 for (std::vector<std::string>::const_iterator name_it = name_vec.begin();
/gem5/src/cpu/o3/
H A Drename_map.hh74 using const_iterator = Arch2PhysMap::const_iterator;
151 const_iterator begin() const { return map.begin(); }
152 const_iterator cbegin() const { return map.cbegin(); }
158 const_iterator end() const { return map.end(); }
159 const_iterator cend() const { return map.cend(); }

Completed in 31 milliseconds

1234