Lines Matching refs:m_CommandMemoryAreaBegin
48 m_CommandMemoryAreaBegin = 0; in Initialize()
93 if ( m_CommandMemoryAreaEnd > m_CommandMemoryAreaBegin ) { in TryAllocMemory()
95 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory()
96 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
97 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
102 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaSize ) { in TryAllocMemory()
103 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
104 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
108 m_CommandMemoryAreaBegin = count; in TryAllocMemory()
112 if ( ptr != NULL && m_CommandMemoryAreaBegin == m_CommandMemoryAreaEnd ) { in TryAllocMemory()
122 if ( m_CommandMemoryAreaEnd > m_CommandMemoryAreaBegin ) { in GetAllocatableCommandSize()
124 return m_CommandMemoryAreaEnd - m_CommandMemoryAreaBegin; in GetAllocatableCommandSize()
129 m_CommandMemoryAreaSize - m_CommandMemoryAreaBegin, in GetAllocatableCommandSize()
220 if ( m_CommandMemoryAreaBegin == m_CommandMemoryAreaEnd ) { in FinalizeCommandList()
222 m_CommandMemoryAreaBegin = m_CommandMemoryAreaEnd = 0; in FinalizeCommandList()