Home
last modified time | relevance | path

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

/CTR-SDK-0.14.21/sources/libraries/init/
Dinit_Alloc.cpp34 …pedef nn::fnd::ExpHeapTemplate<nn::os::LockPolicy::Object<nn::os::CriticalSection> > SystemExpHeap; typedef
38 SystemExpHeap* s_pSystemHeap = 0; //!< システムヒープ
39 …nn::util::aligned_storage<sizeof(SystemExpHeap::Allocator), nn::util::alignment_of<SystemExpHeap::…
40 SystemExpHeap::Allocator* s_pSystemAllocator = 0; //<! システムヒープ用アロケータ
115 NN_TASSERT_(size >= sizeof(SystemExpHeap)); in InitializeAllocator()
116 const size_t alignment = nn::util::alignment_of<SystemExpHeap>::value; in InitializeAllocator()
118 uptr headAddr = heapAddr + sizeof(SystemExpHeap); in InitializeAllocator()
119 …s_pSystemHeap = new (reinterpret_cast<void*>(heapAddr)) SystemExpHeap(headAddr, addr + size - head… in InitializeAllocator()
120 s_pSystemAllocator = new (&s_SystemAllocatorBuffer) SystemExpHeap::Allocator(*s_pSystemHeap); in InitializeAllocator()