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

/gem5/src/base/
H A Dcircular_queue.hh101 uint32_t _round; member in class:CircularQueue
156 uint32_t _round; member in struct:CircularQueue::iterator
160 : _cq(cq), _idx(idx), _round(round) {}
177 iterator() : _cq(nullptr), _idx(0), _round(0) { }
180 : _cq(it._cq), _idx(it._idx), _round(it._round) {}
187 _round = it._round;
191 ~iterator() { _cq = nullptr; _idx = 0; _round = 0; }
209 return _cq != nullptr && _cq->isValidIdx(_idx, _round);
[all...]
H A Dcircular_queue.test.cc218 ASSERT_EQ(it_3._round, 1);
269 ASSERT_EQ(starting_it._round + 1, ending_it._round);

Completed in 6 milliseconds