Lines Matching refs:u32
35 void Initialize( void* commandBuffer, u32 commandBufferSize );
40 u32 GetAllocatableCommandSize() const;
42 u32 PushCommand( DriverCommand* command );
45 u32 FlushCommand( bool forceFlag );
46 void WaitCommandReply( u32 tag );
48 bool IsFinishCommand( u32 tag ) const;
57 void* AllocMemory( u32 count );
58 void* TryAllocMemory( u32 count );
75 u32 m_CommandTag;
76 u32 m_FinishCommandTag;
78 u32* m_CommandMemoryArea;
79 u32 m_CommandMemoryAreaSize;
81 u32 m_CommandMemoryAreaBegin;
82 u32 m_CommandMemoryAreaEnd;
92 …u32 commandAreaCount = ( sizeof(Command) + sizeof(m_CommandMemoryArea[0]) - 1 ) / sizeof(m_Command… in AllocCommand()