Searched refs:MT_VERIFY (Results 1 – 5 of 5) sorted by relevance
| /TaskScheduler/Scheduler/Include/ |
| H A D | MTDebug.h | 40 #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 D | MTTaskQueue.h | 156 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 D | MTScopes.h | 150 …MT_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() 270 …MT_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() 399 …MT_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 D | MTThread.h | 166 …MT_VERIFY((cpuCore < (uint32)GetNumberOfHardwareThreads()) || cpuCore == MW_MAXIMUM_PROCESSORS, "I… 234 …MT_VERIFY((cpuCore < (uint32)GetNumberOfHardwareThreads()) || cpuCore == MW_MAXIMUM_PROCESSORS, "I…
|
| /TaskScheduler/Scheduler/Source/ |
| H A D | MTScheduler.cpp | 737 …MT_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()
|