| /TaskScheduler/SchedulerTests/Tests/ |
| H A D | FireAndForget.cpp | 85 MT::TaskHandle handle = taskPool->Alloc(SimpleTask(doCounter, dtorCounter, nullptr)); in SUITE() 98 MT::TaskHandle taskHandle0 = taskPool.Alloc(SimpleTask()); in SUITE() 101 MT::TaskHandle taskHandle1 = taskPool.Alloc(SimpleTask()); in SUITE() 104 MT::TaskHandle taskHandle2 = taskPool.Alloc(SimpleTask()); in SUITE() 107 MT::TaskHandle taskHandle3 = taskPool.Alloc(SimpleTask()); in SUITE() 139 MT::TaskHandle taskHandle5 = taskPool.Alloc(SimpleTask()); in SUITE() 211 taskHandles[i] = taskPool.Alloc(SimpleTask(&doCounter, &dtorCounter, &taskPool)); in SUITE()
|
| H A D | StackSizeTests.cpp | 99 handle = extendedTaskPool.Alloc(ExtendedStackSizeTask()); in SUITE() 102 handle = standardTaskPool.Alloc(StandartStackSizeTask()); in SUITE()
|
| H A D | PriorityTests.cpp | 180 taskHandles[index] = lowPriorityTasksPool.Alloc(TaskLow(i)); in SUITE() 186 taskHandles[index] = highPriorityTasksPool.Alloc(TaskHigh(i)); in SUITE() 192 taskHandles[index] = normalPriorityTasksPool.Alloc(TaskNormal(i)); in SUITE()
|
| H A D | ScopesTests.cpp | 219 int32 id1 = persistentStorage.Alloc(srcFile, srcLine, scopeName1); in SUITE() 222 int32 id2 = persistentStorage.Alloc(srcFile, srcLine, scopeName2); in SUITE()
|
| H A D | FoundationTests.cpp | 166 void* rawMemory = MT::Memory::Alloc(sizeof(int) * elementsCount); in SUITE()
|
| H A D | DxtTests.cpp | 187 …dxtBlocks = MT::ArrayView<uint8>( MT::Memory::Alloc( dxtBlocksTotalSizeInBytes ), dxtBlocksTotalSi… in SUITE() 326 decompressedImage = MT::ArrayView<uint8>( MT::Memory::Alloc(bytesCount), bytesCount); in SUITE()
|
| /TaskScheduler/Scheduler/Include/ |
| H A D | MTAppInterop.h | 78 static void* Alloc(size_t size, size_t align = MT_DEFAULT_ALIGN);
|
| H A D | MTTaskPool.h | 267 data = Memory::Alloc(bytesCount, ALIGNMENT); in TaskPool() 320 TaskHandle Alloc(T && task) in Alloc() function
|
| H A D | MTConcurrentRingBuffer.h | 85 data = Memory::Alloc(sizeof(T) * numElements, ALIGNMENT); in ConcurrentRingBuffer()
|
| H A D | MTTaskQueue.h | 131 data = Memory::Alloc(bytesCount, ALIGNMENT); in Create()
|
| /TaskScheduler/Scheduler/Include/Scopes/ |
| H A D | MTScopes.h | 177 int32 Alloc(const char* srcFile, int32 srcLine, const char* scopeName) in Alloc() function 191 int32 Alloc(const char* srcFile, int32 srcLine, const char* scopeName, const T1 & p1) in Alloc() function 204 …int32 Alloc(const char* srcFile, int32 srcLine, const char* scopeName, const T1 & p1, const T1 & p… in Alloc() function 217 …int32 Alloc(const char* srcFile, int32 srcLine, const char* scopeName, const T1 & p1, const T1 & p… in Alloc() function 564 SCOPE_CONCAT(scope_descId_, line) = storagePointer -> Alloc(file, line, name); \ 570 SCOPE_CONCAT(scope_descId_, line) = storagePointer -> Alloc(file, line, name, param1); \ 575 SCOPE_CONCAT(scope_descId_, line) = storagePointer -> Alloc(file, line, name, param1, param2); \
|
| /TaskScheduler/Scheduler/Source/ |
| H A D | MTThreadContext.cpp | 51 descBuffer = Memory::Alloc( GetMemoryRequrementInBytesForDescBuffer() ); in ThreadContext()
|
| H A D | MTDefaultAppInterop.cpp | 71 void* Memory::Alloc(size_t size, size_t align) in Alloc() function in MT::Memory
|