Lines Matching refs:u32
33 void Initialize( void* commandBuffer, u32 commandBufferSize );
38 u32 GetAllocatableCommandSize() const;
40 u32 PushCommand( DriverCommand* command );
43 u32 FlushCommand( bool forceFlag );
44 void WaitCommandReply( u32 tag );
46 bool IsFinishCommand( u32 tag ) const;
55 void* AllocMemory( u32 count );
56 void* TryAllocMemory( u32 count );
73 u32 m_CommandTag;
74 u32 m_FinishCommandTag;
76 u32* m_CommandMemoryArea;
77 u32 m_CommandMemoryAreaSize;
79 u32 m_CommandMemoryAreaBegin;
80 u32 m_CommandMemoryAreaEnd;
90 …u32 commandAreaCount = ( sizeof(Command) + sizeof(m_CommandMemoryArea[0]) - 1 ) / sizeof(m_Command… in AllocCommand()