Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/fnd/
Dfnd_WaitableUnitHeap.h80 void* ret = Base::Allocate(); in TryAllocate()
96 void* Allocate() in Allocate() function
99 void* ret = Base::Allocate(); in Allocate()
175 virtual void* Allocate(size_t size, s32 alignment);
184 inline void* WaitableUnitHeap<LockPolicy, Semaphore>::Allocator::Allocate(size_t size, s32 alignmen… in Allocate() function
188 return m_Heap->Allocate(); in Allocate()
Dfnd_UnitHeap.h73 void* Allocate();
133 inline void* UnitHeapBase::Allocate() in Allocate() function
310 void* Allocate() in Allocate() function
313 return Base::Allocate(); in Allocate()
460 virtual void* Allocate(size_t size, s32 alignment);
473 inline void* UnitHeapTemplate<LockPolicy>::Allocator::Allocate(size_t size, s32 alignment) in Allocate() function
477 return m_Heap->Allocate(); in Allocate()
Dfnd_Allocator.h49 virtual void* Allocate(size_t size, s32 alignment) = 0;
92 …tic_cast<T*>(StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()->Allocate(n * sizeof(T), nn…
122 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…
Dfnd_ExpHeap.h134 …void* Allocate(size_t byteSize, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMod…
319 …void* Allocate(size_t byteSize, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMod…
322 return Base::Allocate(byteSize, alignment, groupId, mode, reuse);
570 …virtual void* Allocate(size_t size, s32 alignment) { return m_Heap->Allocate(size, alignment, m_Gr… in Allocate() function
Dfnd_FrameHeap.h70 void* Allocate(size_t size, s32 alignment);
129 inline void* FrameHeapBase::Allocate(size_t size, s32 alignment) in Allocate() function
418 void* Allocate(size_t size, s32 alignment = DEFAULT_ALIGNMENT)
421 return Base::Allocate(size, alignment);
Dfnd_BuddyHeap.h704 virtual void* Allocate(size_t size, s32 alignment = nn::fnd::HeapBase::DEFAULT_ALIGNMENT)
/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Utility.h86 static void* Allocate(void* pObj, unsigned numItems, size_t size) in Allocate() function
88 return reinterpret_cast<ZlibAllocator*>(pObj)->Allocate(numItems * size); in Allocate()
101 void* Allocate(size_t size) in Allocate() function
Dcx_Uncompression.cpp1093 s.zalloc = detail::ZlibAllocator::Allocate; in UncompressDeflateCommon()
Dcx_Compression.cpp1327 s.zalloc = detail::ZlibAllocator::Allocate; in CompressDeflateCommon()
Dcx_StreamingUncompression.cpp1548 s.zalloc = detail::ZlibAllocator::Allocate; in InitUncompressContextDeflateCommon()
/CTR-SDK-4.2.5/include/nn/util/
Dutil_Bits.h51 int Allocate() in Allocate() function
102 int j = bits[i].Allocate(); in AllocateImpl()
125 int Allocate() { return BitsAllocatorBase::AllocateImpl(m_Bits, N); } in Allocate() function
/CTR-SDK-4.2.5/include/nn/socket/
Dsocket_Common.h31 void* Allocate(size_t size, s32 alignment = sizeof(int));
32 Result Allocate(void*& p, size_t size, s32 alignment = sizeof(int));
Dsocket_SessionPool.h61 Result Allocate(SessionItem*& pSessionItem) in Allocate() function
64 Result result = m_sessionPool.Allocate(pSessionItem); in Allocate()
201 Result Allocate(SessionItem*& pSessionItem) in Allocate() function
363 m_pSessionItemArray = reinterpret_cast<SessionItem*>(allocator.Allocate(arraySize, 4));
/CTR-SDK-4.2.5/sources/libraries/os/
Dos_SimpleAutoStackManager.cpp37 void* const pMemory = GetAllocator()->Allocate(stackSize, 4); in Construct()
Dos_StackMemoryAutoStackManager.cpp39 void* const pMemory = GetAllocator()->Allocate(stackSize, 0x1000); in Construct()
Dos_AddressSpaceManager.cpp37 uptr AddressSpaceManager::Allocate(MemoryBlockBase* pBlock, size_t size, size_t skipSize) in Allocate() function in nn::os::AddressSpaceManager
200 return pThis->Allocate(pBlock, size, skipSize); in nnosAddressSpaceManagerAllocate()
Dos_AddressSpaceManager.h67 uptr Allocate(MemoryBlockBase* pBlock, size_t size, size_t skipSize);
Dos_MemoryBlock.cpp52 return pManager->Allocate(p, s, 0); in AllocateFromMemoryBlockSpace()
Dos_SharedMemory.cpp49 return pManager->Allocate(p, s, NN_OS_MEMORY_PAGE_SIZE); in AllocateFromSharedMemorySpace()
/CTR-SDK-4.2.5/sources/libraries/init/
Dinit_Alloc.cpp54 return s_pSystemHeap->Allocate(size); in malloc()
/CTR-SDK-4.2.5/sources/libraries/fnd/
Dfnd_ExpHeap.cpp55 void* ExpHeapBase::Allocate(size_t byteSize, s32 alignment, bit8 groupId, AllocationMode mode, bool… in Allocate() function in nn::fnd::ExpHeapBase
/CTR-SDK-4.2.5/sources/libraries/dbg/CTR/
Ddbg_ExceptionScreen.cpp400 …s_ExceptionScreen = new (allocator->Allocate(sizeof(*s_ExceptionScreen), 8)) ExceptionScreen(optio… in Create()