Lines Matching refs:ptr
69 void* ptr = TryAllocMemory( count ); in AllocMemory() local
70 if ( ptr != NULL ) return ptr; in AllocMemory()
73 ptr = TryAllocMemory( count ); in AllocMemory()
74 if ( ptr != NULL ) return ptr; in AllocMemory()
77 while( ptr == NULL ) in AllocMemory()
81 ptr = TryAllocMemory( count ); in AllocMemory()
84 return ptr; in AllocMemory()
89 void* ptr = NULL; in TryAllocMemory() local
96 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
103 ptr = &m_CommandMemoryArea[m_CommandMemoryAreaBegin]; in TryAllocMemory()
107 ptr = &m_CommandMemoryArea[0]; in TryAllocMemory()
112 if ( ptr != NULL && m_CommandMemoryAreaBegin == m_CommandMemoryAreaEnd ) { in TryAllocMemory()
115 return ptr; in TryAllocMemory()