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

/gem5/src/systemc/core/
H A Dlist.hh46 ListNode() : nextListNode(nullptr), prevListNode(nullptr) {}
49 ListNode *nextListNode; member in struct:sc_gem5::ListNode
55 if (nextListNode)
56 nextListNode->prevListNode = prevListNode;
58 prevListNode->nextListNode = nextListNode;
59 nextListNode = nullptr;
69 nextListNode = this;
80 t->nextListNode = nextListNode;
[all...]
H A Dscheduler.cc230 ListNode *n = list->nextListNode;
243 was_ready = (p->nextListNode != nullptr);

Completed in 6 milliseconds