Lines Matching refs:m_Heap
660 Allocator(BuddyHeap& heap) : m_Heap(0) { Initialize(heap); } in Allocator()
665 Allocator() : m_Heap(0) {} in Allocator()
674 NN_TASSERT_(!this->m_Heap); in Initialize()
675 this->m_Heap = &heap; in Initialize()
683 inline BuddyHeap* GetHeap() { return m_Heap; } in GetHeap()
690 inline const BuddyHeap* GetHeap() const { return m_Heap; } in GetHeap()
702 s32 order = m_Heap->GetOrder(size); in Allocate()
703 void* p = m_Heap->AllocateByOrder(order); in Allocate()
720 m_Heap->Free(p, order); in Free()
725 return m_Heap->GetBytesByOrder(order); in GetBytesByOrder()
730 BuddyHeap* m_Heap; //!< バディヒープ