Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/os/
Dos_StackMemoryBlock.cpp49 void Switch(StackMemoryBlock* pTo, StackMemoryBlock* pFrom) in Switch()
58 void StackMemoryBlock::Initialize(size_t size) in Initialize()
78 void StackMemoryBlock::Finalize() in Finalize()
98 new (p) StackMemoryBlock(); in nnosStackMemoryBlockInitialize()
104 new (p) StackMemoryBlock(size); in nnosStackMemoryBlockAllocate()
109 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockFree()
110 pStackMemoryBlock->~StackMemoryBlock(); in nnosStackMemoryBlockFree()
115 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetAddress()
121 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetSize()
127 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetStackBottom()
Dos_Default.cpp68 reinterpret_cast<nn::os::StackMemoryBlock*>(pBlockOnStack), in Construct()
69 reinterpret_cast<nn::os::StackMemoryBlock*>(&stackBlock) ); in Construct()
Dos_ThreadPool.cpp94 …d* workBuffer, size_t numMaxWaitObjects, size_t numThreads, nn::os::StackMemoryBlock stacks[], s32… in Initialize()
354 StackMemoryBlock* pWorkerStacks = reinterpret_cast<StackMemoryBlock*>(workerStacks); in nnosThreadPoolInitializeWithStackMemoryBlock()
/CTR-SDK-4.2.5/include/nn/os/
Dos_StackMemoryBlock.h59 class StackMemoryBlock : public MemoryBlockBase
72 StackMemoryBlock() {} in StackMemoryBlock() function
84 explicit StackMemoryBlock(size_t size) { Initialize(size); } in StackMemoryBlock() function
103 ~StackMemoryBlock() { Finalize(); } in ~StackMemoryBlock()
131 void Switch(StackMemoryBlock* pTo, StackMemoryBlock* pFrom);
159 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosStackMemoryBlock, nn::os::StackMemoryBlock, 24, u32…
Dos_ThreadPool.h94 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[…
130 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[…
220 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[… in ThreadPool()