Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/os/
Dos_InterCoreBlockingQueue.cpp49 m_size = size; in Initialize()
63 m_size = size; in TryInitialize()
109 if (m_size > m_usedCount) in TryEnqueue()
111 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in TryEnqueue()
131 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in ForceEnqueue()
132 if (m_size > m_usedCount) in ForceEnqueue()
143 m_firstIndex = (m_firstIndex + 1) % m_size; in ForceEnqueue()
179 if (m_size > m_usedCount) in TryJam()
181 m_firstIndex = (m_firstIndex + m_size - 1) % m_size; in TryJam()
224 m_firstIndex = (m_firstIndex + 1) % m_size; in TryDequeue()
Dos_BlockingQueue.cpp49 m_size = size; in Initialize()
63 m_size = size; in TryInitialize()
109 if (m_size > m_usedCount) in TryEnqueue()
111 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in TryEnqueue()
131 s32 lastIndex = (m_firstIndex + m_usedCount) % m_size; in ForceEnqueue()
132 if (m_size > m_usedCount) in ForceEnqueue()
143 m_firstIndex = (m_firstIndex + 1) % m_size; in ForceEnqueue()
177 if (m_size > m_usedCount) in TryJam()
179 m_firstIndex = (m_firstIndex + m_size - 1) % m_size; in TryJam()
220 m_firstIndex = (m_firstIndex + 1) % m_size; in TryDequeue()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/os/
Dos_InterCoreBlockingQueue.h72 { return m_size; } in GetSize()
87 size_t m_size; //!< キューのサイズ variable
Dos_BlockingQueue.h72 { return m_size; } in GetSize()
87 size_t m_size; //!< キューのサイズ variable