Lines Matching refs:count
63 void* DriverCommandManager::AllocMemory( u32 count ) in AllocMemory() argument
65 NW_ASSERT( count <= m_CommandMemoryAreaSize ); in AllocMemory()
67 void* ptr = TryAllocMemory( count ); in AllocMemory()
71 ptr = TryAllocMemory( count ); in AllocMemory()
79 ptr = TryAllocMemory( count ); in AllocMemory()
85 void* DriverCommandManager::TryAllocMemory( u32 count ) in TryAllocMemory() argument
93 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory()
95 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
100 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaSize ) { in TryAllocMemory()
102 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
104 else if ( count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory()
106 m_CommandMemoryAreaBegin = count; in TryAllocMemory()