Lines Matching refs:ptr
67 void* ptr = TryAllocMemory( count ); in AllocMemory() local
68 if ( ptr != NULL ) return ptr; in AllocMemory()
71 ptr = TryAllocMemory( count ); in AllocMemory()
72 if ( ptr != NULL ) return ptr; in AllocMemory()
75 while( ptr == NULL ) in AllocMemory()
79 ptr = TryAllocMemory( count ); in AllocMemory()
82 return ptr; in AllocMemory()
87 void* ptr = NULL; in TryAllocMemory() local
94 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
101 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
105 ptr = &m_CommandMemoryArea[0]; in TryAllocMemory()
110 if ( ptr != NULL && m_CommandMemoryAreaBegin == m_CommandMemoryAreaEnd ) { in TryAllocMemory()
113 return ptr; in TryAllocMemory()