Searched refs:m_firstIndex (Results 1 – 4 of 4) 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()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()
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