Lines Matching refs:count
65 void* DriverCommandManager::AllocMemory( u32 count ) in AllocMemory() argument
67 NW_ASSERT( count <= m_CommandMemoryAreaSize ); in AllocMemory()
69 void* ptr = TryAllocMemory( count ); in AllocMemory()
73 ptr = TryAllocMemory( count ); in AllocMemory()
81 ptr = TryAllocMemory( count ); in AllocMemory()
87 void* DriverCommandManager::TryAllocMemory( u32 count ) in TryAllocMemory() argument
95 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory()
97 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
102 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaSize ) { in TryAllocMemory()
104 m_CommandMemoryAreaBegin += count; in TryAllocMemory()
106 else if ( count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory()
108 m_CommandMemoryAreaBegin = count; in TryAllocMemory()