Searched refs:it_ (Results 1 - 2 of 2) sorted by relevance

/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh308 RawIterator it_; member in class:sc_core::sc_vector_iter
311 Policy(acc), it_(it)
324 sc_vector_iter() : Policy(), it_() {}
332 ) : Policy(it.get_policy()), it_(it.it_)
338 ++it_;
344 --it_;
351 ++it_;
358 --it_;
365 return ThisType(it_
[all...]
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.h263 raw_iterator it_; member in class:sc_core::sc_vector_iter
266 : access_policy(acc), it_(it) {}
278 sc_vector_iter() : access_policy(), it_() {}
286 : access_policy( it.get_policy() ), it_( it.it_ )
290 this_type& operator++(){ ++it_; return *this; }
291 this_type& operator--(){ --it_; return *this; }
292 this_type operator++(int){ this_type old(*this); ++it_; return old; }
293 this_type operator--(int){ this_type old(*this); --it_; return old; }
297 { return this_type( it_
[all...]

Completed in 14 milliseconds