Home
last modified time | relevance | path

Searched refs:m_Tail (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/fnd/
Dfnd_Queue.h43 IntrusiveQueue() : m_Head(0), m_Tail(0) {} in IntrusiveQueue()
76 Item* m_Tail; //!< キューの末尾のノード variable
104 this->m_Head = this->m_Tail = pNode; in Enqueue()
109 m_Tail->m_NextLink = p; in Enqueue()
110 this->m_Tail = p; in Enqueue()
124 if (m_Head == m_Tail) in Dequeue()
148 } while (p != m_Tail); in Clear()
Dfnd_FrameHeap.h111 explicit State(FrameHeapBase& heap) : m_Head(heap.m_CurrentHead), m_Tail(heap.m_CurrentTail) {} in State()
116 State() : m_Head(0), m_Tail(0) {} in State()
120 uptr m_Tail; variable
122 explicit State(uptr head, uptr tail) : m_Head(head), m_Tail(tail) {} in State()
261 NN_TASSERT_(this->m_Addr <= state.m_Tail && state.m_Tail <= this->m_Addr + this->m_Size); in RestoreState()
263 NN_TASSERT_(state.m_Tail >= this->m_CurrentTail); in RestoreState()
266 this->m_CurrentTail = state.m_Tail; in RestoreState()