Home
last modified time | relevance | path

Searched refs:threadConstructionInfo (Results 1 – 25 of 51) sorted by relevance

123

/dports/games/critterding/critterding-beta12/src/utils/bullet/BulletMultiThreaded/
H A DWin32ThreadSupport.cpp33 Win32ThreadSupport::Win32ThreadSupport(const Win32ThreadConstructionInfo & threadConstructionInfo) in Win32ThreadSupport() argument
35 m_maxNumTasks = threadConstructionInfo.m_numThreads; in Win32ThreadSupport()
36 startThreads(threadConstructionInfo); in Win32ThreadSupport()
180 void Win32ThreadSupport::startThreads(const Win32ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
183 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
184 m_completeHandles.resize(threadConstructionInfo.m_numThreads); in startThreads()
186 m_maxNumTasks = threadConstructionInfo.m_numThreads; in startThreads()
188 for (int i=0;i<threadConstructionInfo.m_numThreads;i++) in startThreads()
195 SIZE_T dwStackSize=threadConstructionInfo.m_threadStackSize; in startThreads()
221 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
[all …]
H A DSequentialThreadSupport.cpp22 …ialThreadSupport::SequentialThreadSupport(SequentialThreadConstructionInfo& threadConstructionInfo) in SequentialThreadSupport() argument
24 startThreads(threadConstructionInfo); in SequentialThreadSupport()
67 void SequentialThreadSupport::startThreads(SequentialThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
76 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
77 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
78 … Created local store at %p for task %s\n", spuStatus.m_lsMemory, threadConstructionInfo.m_uniqueNa… in startThreads()
H A DPosixThreadSupport.cpp35 PosixThreadSupport::PosixThreadSupport(ThreadConstructionInfo& threadConstructionInfo) in PosixThreadSupport() argument
37 startThreads(threadConstructionInfo); in PosixThreadSupport()
196 void PosixThreadSupport::startThreads(ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
198 printf("%s creating %i threads.\n", __FUNCTION__, threadConstructionInfo.m_numThreads); in startThreads()
199 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
203 for (int i=0;i < threadConstructionInfo.m_numThreads;i++) in startThreads()
218 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
219 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/science/chrono/chrono-7.0.1/src/chrono/parallel/
H A DChThreadsWIN32.cpp23 ChThreadsWIN32::ChThreadsWIN32(ChThreadConstructionInfo& threadConstructionInfo) { in ChThreadsWIN32() argument
24 makeThreads(threadConstructionInfo); in ChThreadsWIN32()
103 void ChThreadsWIN32::makeThreads(ChThreadConstructionInfo& threadConstructionInfo) { in makeThreads() argument
104 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in makeThreads()
105 m_completeHandles.resize(threadConstructionInfo.m_numThreads); in makeThreads()
107 uniqueName = threadConstructionInfo.m_uniqueName; in makeThreads()
109 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) { in makeThreads()
113 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in makeThreads()
121 …sprintf(spuStatus.m_eventStartHandleName, "eventStart%s%d", threadConstructionInfo.m_uniqueName, i… in makeThreads()
136 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in makeThreads()
[all …]
H A DChThreadsPOSIX.cpp27 ChThreadsPOSIX::ChThreadsPOSIX(ChThreadConstructionInfo& threadConstructionInfo) { in ChThreadsPOSIX() argument
28 makeThreads(threadConstructionInfo); in ChThreadsPOSIX()
128 void ChThreadsPOSIX::makeThreads(ChThreadConstructionInfo& threadConstructionInfo) { in makeThreads() argument
129 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in makeThreads()
131 uniqueName = threadConstructionInfo.m_uniqueName; in makeThreads()
149 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) { in makeThreads()
177 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in makeThreads()
178 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in makeThreads()
H A DChThreads.h30 ChThreads(ChThreadConstructionInfo& threadConstructionInfo) in ChThreads() argument
31 : ChThreadsPlatformImplementation(threadConstructionInfo){}; in ChThreads()
/dports/devel/bullet/bullet3-3.21/examples/MultiThreading/
H A Db3Win32ThreadSupport.cpp28 m_maxNumTasks = threadConstructionInfo.m_numThreads; in b3Win32ThreadSupport()
29 startThreads(threadConstructionInfo); in b3Win32ThreadSupport()
196 m_activeThreadStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
197 m_completeHandles.resize(threadConstructionInfo.m_numThreads); in startThreads()
199 m_maxNumTasks = threadConstructionInfo.m_numThreads; in startThreads()
201 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) in startThreads()
208 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
225 switch (threadConstructionInfo.m_priority) in startThreads()
256 threadStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
257 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
[all …]
H A Db3PosixThreadSupport.cpp31 b3PosixThreadSupport::b3PosixThreadSupport(ThreadConstructionInfo& threadConstructionInfo) in b3PosixThreadSupport() argument
33 startThreads(threadConstructionInfo); in b3PosixThreadSupport()
218 void b3PosixThreadSupport::startThreads(ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
220 printf("%s creating %i threads.\n", __FUNCTION__, threadConstructionInfo.m_numThreads); in startThreads()
221 m_activeThreadStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
226 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) in startThreads()
242 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
243 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
244 spuStatus.m_lsMemoryReleaseFunc = threadConstructionInfo.m_lsMemoryReleaseFunc; in startThreads()
/dports/devel/py-bullet3/bullet3-3.21/examples/MultiThreading/
H A Db3Win32ThreadSupport.cpp28 m_maxNumTasks = threadConstructionInfo.m_numThreads; in b3Win32ThreadSupport()
29 startThreads(threadConstructionInfo); in b3Win32ThreadSupport()
196 m_activeThreadStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
197 m_completeHandles.resize(threadConstructionInfo.m_numThreads); in startThreads()
199 m_maxNumTasks = threadConstructionInfo.m_numThreads; in startThreads()
201 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) in startThreads()
208 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
225 switch (threadConstructionInfo.m_priority) in startThreads()
256 threadStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
257 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
[all …]
H A Db3PosixThreadSupport.cpp31 b3PosixThreadSupport::b3PosixThreadSupport(ThreadConstructionInfo& threadConstructionInfo) in b3PosixThreadSupport() argument
33 startThreads(threadConstructionInfo); in b3PosixThreadSupport()
218 void b3PosixThreadSupport::startThreads(ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
220 printf("%s creating %i threads.\n", __FUNCTION__, threadConstructionInfo.m_numThreads); in startThreads()
221 m_activeThreadStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
226 for (int i = 0; i < threadConstructionInfo.m_numThreads; i++) in startThreads()
242 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
243 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
244 spuStatus.m_lsMemoryReleaseFunc = threadConstructionInfo.m_lsMemoryReleaseFunc; in startThreads()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/BulletMultiThreaded/
H A DWin32ThreadSupport.cpp33 Win32ThreadSupport::Win32ThreadSupport(const Win32ThreadConstructionInfo & threadConstructionInfo) in Win32ThreadSupport() argument
35 m_maxNumTasks = threadConstructionInfo.m_numThreads; in Win32ThreadSupport()
36 startThreads(threadConstructionInfo); in Win32ThreadSupport()
227 void Win32ThreadSupport::startThreads(const Win32ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
230 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
231 m_completeHandles.resize(threadConstructionInfo.m_numThreads); in startThreads()
233 m_maxNumTasks = threadConstructionInfo.m_numThreads; in startThreads()
235 for (int i=0;i<threadConstructionInfo.m_numThreads;i++) in startThreads()
242 SIZE_T dwStackSize=threadConstructionInfo.m_threadStackSize; in startThreads()
268 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
[all …]
H A DSequentialThreadSupport.cpp22 …ialThreadSupport::SequentialThreadSupport(SequentialThreadConstructionInfo& threadConstructionInfo) in SequentialThreadSupport() argument
24 startThreads(threadConstructionInfo); in SequentialThreadSupport()
67 void SequentialThreadSupport::startThreads(SequentialThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
76 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
77 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
78 … Created local store at %p for task %s\n", spuStatus.m_lsMemory, threadConstructionInfo.m_uniqueNa… in startThreads()
H A DPosixThreadSupport.cpp35 PosixThreadSupport::PosixThreadSupport(ThreadConstructionInfo& threadConstructionInfo) in PosixThreadSupport() argument
37 startThreads(threadConstructionInfo); in PosixThreadSupport()
197 void PosixThreadSupport::startThreads(ThreadConstructionInfo& threadConstructionInfo) in startThreads() argument
199 printf("%s creating %i threads.\n", __FUNCTION__, threadConstructionInfo.m_numThreads); in startThreads()
200 m_activeSpuStatus.resize(threadConstructionInfo.m_numThreads); in startThreads()
205 for (int i=0;i < threadConstructionInfo.m_numThreads;i++) in startThreads()
220 spuStatus.m_lsMemory = threadConstructionInfo.m_lsMemoryFunc(); in startThreads()
221 spuStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/devel/bullet/bullet3-3.21/src/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp204 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
218 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
220 startThreads(threadConstructionInfo); in btThreadSupportWin32()
304 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
337 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
345 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
348 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
382 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
384 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/graphics/blender/blender-2.91.0/extern/bullet2/src/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp199 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
213 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
215 startThreads(threadConstructionInfo); in btThreadSupportWin32()
299 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
332 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
340 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
343 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
377 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
379 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp199 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
213 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
215 startThreads(threadConstructionInfo); in btThreadSupportWin32()
299 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
332 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
340 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
343 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
377 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
379 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp199 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
213 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
215 startThreads(threadConstructionInfo); in btThreadSupportWin32()
299 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
332 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
340 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
343 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
377 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
379 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/bullet/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp199 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
213 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
215 startThreads(threadConstructionInfo); in btThreadSupportWin32()
299 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
332 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
340 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
343 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
377 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
379 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
/dports/devel/py-bullet3/bullet3-3.21/src/LinearMath/TaskScheduler/
H A DbtThreadSupportWin32.cpp204 btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo);
218 btThreadSupportWin32::btThreadSupportWin32(const ConstructionInfo& threadConstructionInfo) in btThreadSupportWin32() argument
220 startThreads(threadConstructionInfo); in btThreadSupportWin32()
304 void btThreadSupportWin32::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
337 SIZE_T dwStackSize = threadConstructionInfo.m_threadStackSize; in startThreads()
345 …sprintf(threadStatus.m_eventStartHandleName, "es%.8s%d%d", threadConstructionInfo.m_uniqueName, un… in startThreads()
348 …sprintf(threadStatus.m_eventCompleteHandleName, "ec%.8s%d%d", threadConstructionInfo.m_uniqueName,… in startThreads()
382 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()
384 …printf("started %s thread %d with threadHandle %p\n", threadConstructionInfo.m_uniqueName, i, hand… in startThreads()
H A DbtThreadSupportPosix.cpp96 btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo);
121 btThreadSupportPosix::btThreadSupportPosix(const ConstructionInfo& threadConstructionInfo) in btThreadSupportPosix() argument
124 startThreads(threadConstructionInfo); in btThreadSupportPosix()
270 void btThreadSupportPosix::startThreads(const ConstructionInfo& threadConstructionInfo) in startThreads() argument
289 threadStatus.m_userThreadFunc = threadConstructionInfo.m_userThreadFunc; in startThreads()

123