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