Lines Matching refs:p
68 void ExpHeapBase::Free(void* p) in Free() argument
70 NN_TASSERT_(CheckBlock(p)); in Free()
71 detail::FreeToHeap(&m_ExpHeapImpl, p); in Free()
75 size_t ExpHeapBase::ResizeBlock(void *p, size_t newSize) in ResizeBlock() argument
77 return detail::ResizeForMBlockHeap(&m_ExpHeapImpl, p, newSize); in ResizeBlock()
88 void VisitFunc(void* p, detail::Heap, u32 param) in VisitFunc() argument
91 fap.f(p, fap.heap, fap.param); in VisitFunc()
116 size_t ExpHeapBase::GetSizeOf(const void* p) const in GetSizeOf()
118 return detail::GetSizeForMBlockHeap(p); in GetSizeOf()
121 bit8 ExpHeapBase::GetGroupIdOf(const void* p) const in GetGroupIdOf()
123 return detail::GetGroupIDForMBlockHeap(p); in GetGroupIdOf()
126 ExpHeapBase::AllocationDirection ExpHeapBase::GetDirectionOf(const void* p) const in GetDirectionOf()
128 return static_cast<AllocationDirection>(detail::GetAllocDirForMBlockHeap(p)); in GetDirectionOf()
147 bool ExpHeapBase::CheckBlock(const void* p, bit32 option) const in CheckBlock() argument
149 return detail::CheckForMBlockHeap(p, &m_ExpHeapImpl, option); in CheckBlock()