Searched refs:curr (Results 1 - 6 of 6) sorted by relevance

/gem5/src/cpu/o3/
H A Ddep_graph.hh158 DepEntry *curr; local
162 curr = dependGraph[i].next;
164 while (curr) {
167 prev = curr;
168 curr = prev->next;
209 DepEntry *curr = dependGraph[idx].next; local
211 // Make sure curr isn't NULL. Because this instruction is being
215 if (curr == NULL) {
222 while (curr->inst != inst_to_remove) {
223 prev = curr;
273 DepEntry *curr; local
[all...]
/gem5/src/sim/
H A Deventq.cc97 Event::insertBefore(Event *event, Event *curr) argument
102 if (!curr || *event < *curr) {
104 event->nextBin = curr;
108 event->nextBin = curr->nextBin; // curr->nextBin can now become stale
111 event->nextInBin = curr;
129 Event *curr = head->nextBin; local
130 while (curr && *curr < *even
143 Event *curr = top; local
188 Event *curr = head->nextBin; local
[all...]
H A Deventq.hh206 static Event *insertBefore(Event *event, Event *curr);
/gem5/ext/testlib/
H A Dhelper.py198 curr = end[1]
199 curr[2] = end[1] = self.map[key] = [key, curr, end]
213 curr = end[2]
214 while curr is not end:
215 yield curr[0]
216 curr = curr[2]
220 curr = end[1]
221 while curr i
[all...]
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtestall.py277 curr = 0
284 txns[curr].byte_enable += bew
285 txns[1-curr].byte_enable += off
287 if random.random() < pr_frag: curr = 1-curr
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h275 value_and_holder curr; member in struct:values_and_holders::iterator
279 curr(inst /* instance */, function in struct:values_and_holders::iterator
285 iterator(size_t end) : curr(end) {}
287 bool operator==(const iterator &other) { return curr.index == other.curr.index; }
288 bool operator!=(const iterator &other) { return curr.index != other.curr.index; }
291 curr.vh += 1 + (*types)[curr.index]->holder_size_in_ptrs;
292 ++curr
[all...]

Completed in 15 milliseconds