Home
last modified time | relevance | path

Searched refs:SystemExpHeap (Results 1 – 1 of 1) sorted by relevance

/CTR-SDK-2.4.0/sources/libraries/init/
Dinit_Alloc.cpp37 …pedef nn::fnd::ExpHeapTemplate<nn::os::LockPolicy::Object<nn::os::CriticalSection> > SystemExpHeap; typedef
41 SystemExpHeap* s_pSystemHeap = 0; //
42 …nn::util::aligned_storage<sizeof(SystemExpHeap::Allocator), nn::util::alignment_of<SystemExpHeap::…
43 SystemExpHeap::Allocator* s_pSystemAllocator = 0; //<! Allocator for the system heap
168 NN_TASSERT_(size >= sizeof(SystemExpHeap)); in InitializeAllocator()
169 const size_t alignment = nn::util::alignment_of<SystemExpHeap>::value; in InitializeAllocator()
171 uptr headAddr = heapAddr + sizeof(SystemExpHeap); in InitializeAllocator()
172 …s_pSystemHeap = new (reinterpret_cast<void*>(heapAddr)) SystemExpHeap(headAddr, addr + size - head… in InitializeAllocator()
173 s_pSystemAllocator = new (&s_SystemAllocatorBuffer) SystemExpHeap::Allocator(*s_pSystemHeap); in InitializeAllocator()