Home
last modified time | relevance | path

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

/CTR-SDK-2.4.0/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.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-2.4.0/include/nn/os/
Dos_StackMemoryBlock.h57 class StackMemoryBlock : public MemoryBlockBase
70 StackMemoryBlock() {} in StackMemoryBlock() function
82 explicit StackMemoryBlock(size_t size) { Initialize(size); } in StackMemoryBlock() function
101 ~StackMemoryBlock() { Finalize(); } in ~StackMemoryBlock()
129 void Switch(StackMemoryBlock* pTo, StackMemoryBlock* pFrom);
157 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[…
218 …kBuffer, size_t numMaxWaitObjects, size_t numWorkerThreads, nn::os::StackMemoryBlock workerStacks[… in ThreadPool()