Home
last modified time | relevance | path

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

/CTR-SDK-0.14.4/sources/libraries/os/
Dos_StackMemoryBlock.cpp48 void Switch(StackMemoryBlock* pTo, StackMemoryBlock* pFrom) in Switch()
57 void StackMemoryBlock::Initialize(size_t size) in Initialize()
73 void StackMemoryBlock::Finalize() in Finalize()
93 new (p) StackMemoryBlock(); in nnosStackMemoryBlockInitialize()
99 new (p) StackMemoryBlock(size); in nnosStackMemoryBlockAllocate()
104 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockFree()
105 pStackMemoryBlock->~StackMemoryBlock(); in nnosStackMemoryBlockFree()
110 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetAddress()
116 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetSize()
122 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetStackBottom()
Dos_Default.cpp74 reinterpret_cast<nn::os::StackMemoryBlock*>(pBlockOnStack), in Construct()
75 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-0.14.4/include/nn/os/
Dos_StackMemoryBlock.h54 class StackMemoryBlock : public MemoryBlockBase
67 StackMemoryBlock() {} in StackMemoryBlock() function
79 explicit StackMemoryBlock(size_t size) { Initialize(size); } in StackMemoryBlock() function
98 ~StackMemoryBlock() { Finalize(); } in ~StackMemoryBlock()
128 void Switch(StackMemoryBlock* pTo, StackMemoryBlock* pFrom);
156 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosStackMemoryBlock, nn::os::StackMemoryBlock, 24, u32…
Dos_ThreadPool.h92 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[…
126 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[…
214 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[… in ThreadPool()