Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/os/
Dos_InterCoreBlockingQueue.cpp50 m_firstIndex = 0; in Initialize()
64 m_firstIndex = 0; in TryInitialize()
111 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in TryEnqueue()
131 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in ForceEnqueue()
143 m_firstIndex = (m_firstIndex + 1) % m_size; in ForceEnqueue()
181 m_firstIndex = (m_firstIndex + m_size - 1) % m_size; in TryJam()
182 m_ppBuffer[m_firstIndex] = data; in TryJam()
223 *pOut = m_ppBuffer[m_firstIndex]; in TryDequeue()
224 m_firstIndex = (m_firstIndex + 1) % m_size; in TryDequeue()
267 *pOut = m_ppBuffer[m_firstIndex]; in TryGetFront()
Dos_BlockingQueue.cpp50 m_firstIndex = 0; in Initialize()
64 m_firstIndex = 0; in TryInitialize()
111 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in TryEnqueue()
131 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in ForceEnqueue()
143 m_firstIndex = (m_firstIndex + 1) % m_size; in ForceEnqueue()
179 m_firstIndex = (m_firstIndex + m_size - 1) % m_size; in TryJam()
180 m_ppBuffer[m_firstIndex] = data; in TryJam()
219 *pOut = m_ppBuffer[m_firstIndex]; in TryDequeue()
220 m_firstIndex = (m_firstIndex + 1) % m_size; in TryDequeue()
261 *pOut = m_ppBuffer[m_firstIndex]; in TryGetFront()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/os/
Dos_InterCoreBlockingQueue.h78 { return m_firstIndex; } in GetFirstIndex()
88 s32 m_firstIndex; //!< キューの先頭へのインデックス variable
Dos_BlockingQueue.h78 { return m_firstIndex; } in GetFirstIndex()
88 s32 m_firstIndex; //!< キューの先頭へのインデックス variable