Home
last modified time | relevance | path

Searched refs:m_CommandMemoryAreaBegin (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/sources/libraries/snd/
Dsnd_DriverCommandManager.cpp48 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()
[all …]
/NW4C-2.0.3/include/nw/snd/
Dsnd_DriverCommandManager.h81 u32 m_CommandMemoryAreaBegin; variable
95 command->memory_next = m_CommandMemoryAreaBegin; in AllocCommand()