Searched refs:m_firstIndex (Results 1 – 2 of 2) sorted by relevance
50 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()
78 { return m_firstIndex; } in GetFirstIndex()88 s32 m_firstIndex; //!< キューの先頭へのインデックス variable