Home
last modified time | relevance | path

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

/TaskScheduler/Scheduler/Include/
H A DMTDebug.h40 #ifndef MT_VERIFY
41 #define MT_VERIFY( condition, description, operation ) { if ( !(condition) ) { { MT_REPORT_ASSERT_I… macro
54 #ifndef MT_VERIFY
55 #define MT_VERIFY( condition, description, operation ) { if ( !(condition) ) { operation; } } macro
H A DMTTaskQueue.h156 MT_VERIFY(data, "Can't add items to dummy queue", return false; ); in Add()
179 MT_VERIFY(data, "Can't pop items from dummy queue", return false; ); in TryPopOldest()
196 MT_VERIFY(data, "Can't pop items from dummy queue", return false; ); in TryPopNewest()
/TaskScheduler/Scheduler/Include/Scopes/
H A DMTScopes.h150MT_VERIFY(index < (int32)capacity, "Area allocator is full. Can't allocate more memory.", return n… in AllocObject()
231 MT_VERIFY(id > invalidStorageId, "Invalid ID", return nullptr ); in Get()
232 MT_VERIFY(id <= top.Load(), "Invalid ID", return nullptr ); in Get()
270MT_VERIFY(index < (int32)capacity, "Stack allocator overflow. Can't allocate more memory.", return… in AllocObject()
298 MT_VERIFY(id > invalidStackId, "Invalid id", return nullptr); in Get()
395 MT_VERIFY(stackIndex < (int32)stackId.size(), "Stack is too deep.", return nullptr); in AllocObject()
399MT_VERIFY(index < (int32)capacity, "Stack allocator overflow. Can't allocate more memory.", return… in AllocObject()
425 MT_VERIFY(id > invalidStackId, "Invalid id", return nullptr); in Get()
/TaskScheduler/Scheduler/Include/Platform/Windows/
H A DMTThread.h166MT_VERIFY((cpuCore < (uint32)GetNumberOfHardwareThreads()) || cpuCore == MW_MAXIMUM_PROCESSORS, "I…
234MT_VERIFY((cpuCore < (uint32)GetNumberOfHardwareThreads()) || cpuCore == MW_MAXIMUM_PROCESSORS, "I…
/TaskScheduler/Scheduler/Source/
H A DMTScheduler.cpp737MT_VERIFY(IsWorkerThread() == false, "Can't use WaitGroup inside Task. Use FiberContext.WaitGroupA… in WaitGroup()
774 MT_VERIFY(IsWorkerThread() == false, "Can't use WaitAll inside Task.", return false); in WaitAll()