Home
last modified time | relevance | path

Searched refs:stackTop (Results 1 – 4 of 4) sorted by relevance

/TaskScheduler/Scheduler/Include/
H A DMTAppInterop.h57 void* stackTop; member
65 , stackTop(nullptr) in StackDesc()
73 return (char*)stackTop - (char*)stackBottom; in GetStackSize()
/TaskScheduler/Scheduler/Include/Platform/Windows/
H A DMTFiberOptimized.h123 stackDesc.stackTop = (void*)ReadTeb( MW_STACK_BASE_OFFSET /*FIELD_OFFSET(NT_TIB, StackBase)*/ ); in CreateFromCurrentThreadAndRun()
149 char* sp = (char *)stackDesc.stackTop; in Create()
208 …WriteTeb(MW_STACK_BASE_OFFSET /*FIELD_OFFSET(NT_TIB, StackBase)*/ , (uint64)to.stackDesc.stackTop); in SwitchTo()
215 …riteTeb(MW_STACK_BASE_OFFSET /*FIELD_OFFSET(NT_TIB, StackBase)*/, (uint64)from.stackDesc.stackTop); in SwitchTo()
/TaskScheduler/Scheduler/Source/
H A DMTDefaultAppInterop.cpp121 desc.stackTop = desc.stackMemory + desc.stackMemoryBytesCount; in AllocStack()
148 desc.stackTop = desc.stackMemory + desc.stackMemoryBytesCount; in AllocStack()
/TaskScheduler/SchedulerTests/Tests/
H A DScopesTests.cpp62 AssetStackEntry* stackTop = SCOPE_STACK_TOP(threadScopesStack); in SUITE() local
63 CHECK(stackTop != nullptr); in SUITE()
64 int32 parentStackId = stackTop->GetParentId(); in SUITE()