Home
last modified time | relevance | path

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

/CTR-SDK-0.14.4/sources/libraries/os/
Dos_BlockingQueue.cpp51 m_firstIndex = 0; in Initialize()
65 m_firstIndex = 0; in TryInitialize()
112 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in TryEnqueue()
132 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in ForceEnqueue()
144 m_firstIndex = (m_firstIndex + 1) % m_size; in ForceEnqueue()
180 m_firstIndex = (m_firstIndex + m_size - 1) % m_size; in TryJam()
181 m_ppBuffer[m_firstIndex] = data; in TryJam()
220 *pOut = m_ppBuffer[m_firstIndex]; in TryDequeue()
221 m_firstIndex = (m_firstIndex + 1) % m_size; in TryDequeue()
262 *pOut = m_ppBuffer[m_firstIndex]; in TryGetFront()
/CTR-SDK-0.14.4/include/nn/os/
Dos_BlockingQueue.h79 { return m_firstIndex; } in GetFirstIndex()
89 s32 m_firstIndex; //!< キューの先頭へのインデックス variable