Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/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.h71 void* Allocate();
125 inline void* UnitHeapBase::Allocate() in Allocate() function
300 void* Allocate() in Allocate() function
303 return Base::Allocate(); in Allocate()
430 virtual void* Allocate(size_t size, s32 alignment);
443 inline void* UnitHeapTemplate<LockPolicy>::Allocator::Allocate(size_t size, s32 alignment) in Allocate() function
447 return m_Heap->Allocate(); in Allocate()
Dfnd_Allocator.h46 virtual void* Allocate(size_t size, s32 alignment) = 0;
89 …tic_cast<T*>(StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()->Allocate(n * sizeof(T), nn…
119 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…
Dfnd_ExpHeap.h132 …void* Allocate(size_t byteSize, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMod…
315 …void* Allocate(size_t byteSize, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMod…
318 return Base::Allocate(byteSize, alignment, groupId, mode, reuse);
566 …virtual void* Allocate(size_t size, s32 alignment) { return m_Heap->Allocate(size, alignment, m_Gr… in Allocate() function
Dfnd_FrameHeap.h68 void* Allocate(size_t size, s32 alignment);
127 inline void* FrameHeapBase::Allocate(size_t size, s32 alignment) in Allocate() function
414 void* Allocate(size_t size, s32 alignment = DEFAULT_ALIGNMENT)
417 return Base::Allocate(size, alignment);
Dfnd_BuddyHeap.h704 virtual void* Allocate(size_t size, s32 alignment = nn::fnd::HeapBase::DEFAULT_ALIGNMENT)
/CTR-SDK-1.0.0/CTR_SDK/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-1.0.0/CTR_SDK/sources/libraries/os/
Dos_AddressSpaceManager.h68 uptr Allocate(MemoryBlockBase* pBlock, size_t size, size_t skipSize);
Dos_AddressSpaceManager.cpp36 uptr AddressSpaceManager::Allocate(MemoryBlockBase* pBlock, size_t size, size_t skipSize) in Allocate() function in nn::os::AddressSpaceManager
199 return pThis->Allocate(pBlock, size, skipSize); in nnosAddressSpaceManagerAllocate()
Dos_MemoryBlock.cpp51 return pManager->Allocate(p, s, 0); in AllocateFromMemoryBlockSpace()
Dos_SharedMemory.cpp48 return pManager->Allocate(p, s, NN_OS_MEMORY_PAGE_SIZE); in AllocateFromSharedMemorySpace()
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/init/
Dinit_Alloc.cpp52 return s_pSystemHeap->Allocate(size); in malloc()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/net/osl/
Dosl_MbufSystem.h64 static Mbuf* Allocate(size_t size);
Dosl_BuddyHeap.h528 virtual void* Allocate(size_t size, s32 alignment = nn::fnd::HeapBase::DEFAULT_ALIGNMENT)
537 void* p = m_Heap->Allocate(order);
Dosl_IpcDispatcher.h169 return allocator.Allocate(size, sizeof(u64)); in new()
/CTR-SDK-1.0.0/CTR_SDK/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