Home
last modified time | relevance | path

Searched refs:threadID (Results 1 – 25 of 1563) sorted by relevance

12345678910>>...63

/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/HLE/
H A DKernelWaitHelpers.h32 inline void WaitExecTimeout(SceUID threadID) { in WaitExecTimeout() argument
34 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitExecTimeout()
35 u32 timeoutPtr = __KernelGetWaitTimeoutPtr(threadID, error); in WaitExecTimeout()
59 if (t->threadID == threadID) in WaitPauseHelperUpdate()
68 if (waitData.threadID != threadID) in WaitPauseHelperUpdate()
103 waitData = threadID;
164 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitBeginCallback()
190 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
240 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
284 if (VerifyWait(threadID, waitType, uid)) { in ResumeFromWait()
[all …]
H A DsceKernelThread.h51 int __KernelGetThreadExitStatus(SceUID threadID);
58 int sceKernelReleaseWaitThread(SceUID threadID);
63 int sceKernelSuspendThread(SceUID threadID);
64 int sceKernelResumeThread(SceUID threadID);
65 int sceKernelWakeupThread(SceUID threadID);
66 int sceKernelCancelWakeupThread(SceUID threadID);
70 int sceKernelTerminateThread(SceUID threadID);
72 int sceKernelGetThreadExitStatus(SceUID threadID);
176 bool KernelIsThreadDormant(SceUID threadID);
177 bool KernelIsThreadWaiting(SceUID threadID);
[all …]
H A DsceKernelThread.cpp333 SceUID threadID; member in ActionAfterMipsCall
1040 cb(threadID); in __KernelFireThreadEnd()
2284 if (threadID == 0 || threadID == currentThread) { in sceKernelDeleteThread()
2307 if (threadID == 0 || threadID == currentThread) in sceKernelTerminateDeleteThread()
2347 if (threadID == 0 || threadID == currentThread) { in sceKernelTerminateThread()
2649 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEnd()
2682 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEndCB()
2720 if (threadID == 0 || threadID == currentThread) in sceKernelReleaseWaitThread()
2754 if (threadID == 0 || threadID == currentThread) in sceKernelSuspendThread()
2791 if (threadID == 0 || threadID == currentThread) in sceKernelResumeThread()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/HLE/
H A DKernelWaitHelpers.h32 inline void WaitExecTimeout(SceUID threadID) { in WaitExecTimeout() argument
34 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitExecTimeout()
35 u32 timeoutPtr = __KernelGetWaitTimeoutPtr(threadID, error); in WaitExecTimeout()
59 if (t->threadID == threadID) in WaitPauseHelperUpdate()
68 if (waitData.threadID != threadID) in WaitPauseHelperUpdate()
103 waitData = threadID;
164 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitBeginCallback()
190 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
240 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
284 if (VerifyWait(threadID, waitType, uid)) { in ResumeFromWait()
[all …]
H A DsceKernelThread.h51 int __KernelGetThreadExitStatus(SceUID threadID);
58 int sceKernelReleaseWaitThread(SceUID threadID);
63 int sceKernelSuspendThread(SceUID threadID);
64 int sceKernelResumeThread(SceUID threadID);
65 int sceKernelWakeupThread(SceUID threadID);
66 int sceKernelCancelWakeupThread(SceUID threadID);
70 int sceKernelTerminateThread(SceUID threadID);
72 int sceKernelGetThreadExitStatus(SceUID threadID);
176 bool KernelIsThreadDormant(SceUID threadID);
177 bool KernelIsThreadWaiting(SceUID threadID);
[all …]
H A DsceKernelThread.cpp333 SceUID threadID; member in ActionAfterMipsCall
1040 cb(threadID); in __KernelFireThreadEnd()
2284 if (threadID == 0 || threadID == currentThread) { in sceKernelDeleteThread()
2307 if (threadID == 0 || threadID == currentThread) in sceKernelTerminateDeleteThread()
2347 if (threadID == 0 || threadID == currentThread) { in sceKernelTerminateThread()
2649 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEnd()
2682 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEndCB()
2720 if (threadID == 0 || threadID == currentThread) in sceKernelReleaseWaitThread()
2754 if (threadID == 0 || threadID == currentThread) in sceKernelSuspendThread()
2791 if (threadID == 0 || threadID == currentThread) in sceKernelResumeThread()
[all …]
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/HLE/
H A DKernelWaitHelpers.h32 inline void WaitExecTimeout(SceUID threadID) { in WaitExecTimeout() argument
34 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitExecTimeout()
35 u32 timeoutPtr = __KernelGetWaitTimeoutPtr(threadID, error); in WaitExecTimeout()
59 if (t->threadID == threadID) in WaitPauseHelperUpdate()
68 if (waitData.threadID != threadID) in WaitPauseHelperUpdate()
103 waitData = threadID;
164 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitBeginCallback()
190 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
240 SceUID uid = __KernelGetWaitID(threadID, waitType, error); in WaitEndCallback()
284 if (VerifyWait(threadID, waitType, uid)) { in ResumeFromWait()
[all …]
H A DsceKernelThread.h51 int __KernelGetThreadExitStatus(SceUID threadID);
58 int sceKernelReleaseWaitThread(SceUID threadID);
63 int sceKernelSuspendThread(SceUID threadID);
64 int sceKernelResumeThread(SceUID threadID);
65 int sceKernelWakeupThread(SceUID threadID);
66 int sceKernelCancelWakeupThread(SceUID threadID);
70 int sceKernelTerminateThread(SceUID threadID);
72 int sceKernelGetThreadExitStatus(SceUID threadID);
176 bool KernelIsThreadDormant(SceUID threadID);
177 bool KernelIsThreadWaiting(SceUID threadID);
[all …]
H A DsceKernelThread.cpp333 SceUID threadID; member in ActionAfterMipsCall
1040 cb(threadID); in __KernelFireThreadEnd()
2284 if (threadID == 0 || threadID == currentThread) { in sceKernelDeleteThread()
2307 if (threadID == 0 || threadID == currentThread) in sceKernelTerminateDeleteThread()
2347 if (threadID == 0 || threadID == currentThread) { in sceKernelTerminateThread()
2649 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEnd()
2682 if (threadID == 0 || threadID == currentThread) in sceKernelWaitThreadEndCB()
2720 if (threadID == 0 || threadID == currentThread) in sceKernelReleaseWaitThread()
2754 if (threadID == 0 || threadID == currentThread) in sceKernelSuspendThread()
2791 if (threadID == 0 || threadID == currentThread) in sceKernelResumeThread()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Internals/System/Runtime/
H A DSynchronizedPool.cs122 int threadID = this.entries[i].threadID; in PromoteThread()
146 int threadID = localPending[i].threadID; in RecordReturnToGlobalPool()
167 else if (threadID == 0) in RecordReturnToGlobalPool()
180 int threadID = localPending[i].threadID; in RecordTakeFromGlobalPool()
186 else if (threadID == 0) in RecordTakeFromGlobalPool()
234 int threadID = entries[i].threadID; in ReturnToPerThreadPool()
248 else if (threadID == 0) in ReturnToPerThreadPool()
289 int threadID = entries[i].threadID; in TakeFromPerThreadPool()
305 else if (threadID == 0) in TakeFromPerThreadPool()
323 public int threadID; field
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp88 bool find(SkThreadID threadID) const { in find()
90 if (t == threadID) return true; in find()
96 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
100 fThreadIDs.append(1, &threadID); in tryAdd()
104 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
136 SkThreadID threadID(SkGetThreadID()); in acquire() local
165 SkThreadID threadID(SkGetThreadID()); in release() local
192 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
199 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
226 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp88 bool find(SkThreadID threadID) const { in find()
90 if (t == threadID) return true; in find()
96 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
100 fThreadIDs.append(1, &threadID); in tryAdd()
104 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
136 SkThreadID threadID(SkGetThreadID()); in acquire() local
165 SkThreadID threadID(SkGetThreadID()); in release() local
192 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
199 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
226 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/core/
H A DSkSharedMutex.cpp80 bool find(SkThreadID threadID) const { in find()
82 if (t == threadID) return true; in find()
88 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
92 fThreadIDs.append(1, &threadID); in tryAdd()
96 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
128 SkThreadID threadID(SkGetThreadID()); in acquire() local
157 SkThreadID threadID(SkGetThreadID()); in release() local
184 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
191 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
218 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp88 bool find(SkThreadID threadID) const { in find()
90 if (t == threadID) return true; in find()
96 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
100 fThreadIDs.append(1, &threadID); in tryAdd()
104 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
136 SkThreadID threadID(SkGetThreadID()); in acquire() local
165 SkThreadID threadID(SkGetThreadID()); in release() local
192 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
199 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
226 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp88 bool find(SkThreadID threadID) const { in find()
90 if (t == threadID) return true; in find()
96 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
100 fThreadIDs.append(1, &threadID); in tryAdd()
104 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
136 SkThreadID threadID(SkGetThreadID()); in acquire() local
165 SkThreadID threadID(SkGetThreadID()); in release() local
192 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
199 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
226 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/core/
H A DSkSharedMutex.cpp80 bool find(SkThreadID threadID) const { in find()
82 if (t == threadID) return true; in find()
88 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
92 fThreadIDs.append(1, &threadID); in tryAdd()
96 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
128 SkThreadID threadID(SkGetThreadID()); in acquire() local
157 SkThreadID threadID(SkGetThreadID()); in release() local
184 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
191 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
218 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/science/openems/openEMS-0.0.35-71-g4c24b6e/FDTD/extensions/
H A Dengine_extension.cpp50 void Engine_Extension::DoPreVoltageUpdates(int threadID) in DoPreVoltageUpdates() argument
53 if (threadID==0) in DoPreVoltageUpdates()
57 void Engine_Extension::DoPostVoltageUpdates(int threadID) in DoPostVoltageUpdates() argument
60 if (threadID==0) in DoPostVoltageUpdates()
64 void Engine_Extension::Apply2Voltages(int threadID) in Apply2Voltages() argument
67 if (threadID==0) in Apply2Voltages()
71 void Engine_Extension::DoPreCurrentUpdates(int threadID) in DoPreCurrentUpdates() argument
74 if (threadID==0) in DoPreCurrentUpdates()
81 if (threadID==0) in DoPostCurrentUpdates()
85 void Engine_Extension::Apply2Current(int threadID) in Apply2Current() argument
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/nsprpub/pr/tests/
H A Dattach.c125 pthread_t threadID; in main() local
129 thread_t threadID; in main()
132 unsigned threadID; in main()
136 int threadID; in main()
139 TID threadID; in main()
141 thread_id threadID; in main()
222 rv = pthread_join(threadID, NULL); in main()
268 if (threadID == -1) { in main()
282 rv = waitpid(threadID, NULL, 0); in main()
293 if (threadID == -1) { in main()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/nsprpub/pr/tests/
H A Dattach.c135 pthread_t threadID; in main() local
139 thread_t threadID; in main()
142 unsigned threadID; in main()
146 int threadID; in main()
149 TID threadID; in main()
151 thread_id threadID; in main()
234 rv = pthread_join(threadID, NULL); in main()
280 if (threadID == -1) { in main()
294 rv = waitpid(threadID, NULL, 0); in main()
305 if (threadID == -1) { in main()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp89 bool find(SkThreadID threadID) const { in find()
91 if (t == threadID) return true; in find()
97 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
101 fThreadIDs.append(1, &threadID); in tryAdd()
105 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
137 SkThreadID threadID(SkGetThreadID()); in acquire() local
163 SkThreadID threadID(SkGetThreadID()); in release() local
190 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
197 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
224 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/
H A DSkSharedMutex.cpp81 bool find(SkThreadID threadID) const { in find()
83 if (t == threadID) return true; in find()
89 bool tryAdd(SkThreadID threadID) { in tryAdd() argument
93 fThreadIDs.append(1, &threadID); in tryAdd()
97 bool tryRemove(SkThreadID threadID) { in tryRemove() argument
129 SkThreadID threadID(SkGetThreadID()); in acquire() local
155 SkThreadID threadID(SkGetThreadID()); in release() local
182 SkThreadID threadID(SkGetThreadID()); in assertHeld() local
189 SkThreadID threadID(SkGetThreadID()); in acquireShared() local
216 SkThreadID threadID(SkGetThreadID()); in releaseShared() local
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/hxt/tetMesh/src/
H A Dhxt_tetOpti.c73 badTetsCount[threadID] = 0; in badTets_update()
80 badTetsCount[threadID]++; in badTets_update()
130 badTetsCount[threadID] = 0; in badTets_update_among_conflicts()
135 badTetsCount[threadID]++; in badTets_update_among_conflicts()
252 for (int threadID=0; threadID<nthreads; threadID++) { in threadLocals_create() local
281 for (int threadID=0; threadID<nThreads; threadID++) in threadLocals_collectStats() local
365 … uint64_t first = MIN((uint64_t) step*(threadID+1)-1, (uint64_t) (step*(threadID + indexShift))); in threadLocals_update()
416 for (int threadID=0; threadID<nthreads; threadID++) { in threadLocals_destroy() local
429 for(int threadID=0; threadID<shared->numThreads; threadID++) { in SPRDates_update() local
436 for(int threadID=0; threadID<shared->numThreads; threadID++) { in SPRDates_update() local
[all …]
/dports/audio/sc3-plugins/sc3-plugins-Version-3.9.0/source/BetablockerUGens/
H A DBetaBlockerUGensUnused.cpp26 u32 threadID; member
41 u32 threadID; member
68 unit->threadID = unit->bblocker.add_thread(0); in Betablocker_Ctor()
101 u32 threadID = unit->threadID; in Betablocker_next_k() local
111 z = (float) m.get_thread(threadID)->top() / 255.; in Betablocker_next_k()
118 unit->threadID = threadID; in Betablocker_next_k()
129 unit->threadID = unit->bblocker.add_thread(0); in DetaBlocker01_Ctor()
163 u32 threadID = unit->threadID; in DetaBlocker01_next() local
165 z = (float) m.get_thread(threadID)->top() / 255.f; in DetaBlocker01_next()
167 unit->threadID = threadID; in DetaBlocker01_next()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/Debugger/WebSocket/
H A DSteppingSubscriber.cpp67 if (threadID) in CPUFromRequest()
68 *threadID = -1; in CPUFromRequest()
79 if (threadID) in CPUFromRequest()
80 *threadID = uid; in CPUFromRequest()
100 uint32_t threadID; in Into() local
101 auto cpuDebug = CPUFromRequest(req, &threadID); in Into()
143 uint32_t threadID; in Over() local
144 auto cpuDebug = CPUFromRequest(req, &threadID); in Over()
194 uint32_t threadID; in Out() local
195 auto cpuDebug = CPUFromRequest(req, &threadID); in Out()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/Debugger/WebSocket/
H A DSteppingSubscriber.cpp67 if (threadID) in CPUFromRequest()
68 *threadID = -1; in CPUFromRequest()
79 if (threadID) in CPUFromRequest()
80 *threadID = uid; in CPUFromRequest()
100 uint32_t threadID; in Into() local
101 auto cpuDebug = CPUFromRequest(req, &threadID); in Into()
143 uint32_t threadID; in Over() local
144 auto cpuDebug = CPUFromRequest(req, &threadID); in Over()
194 uint32_t threadID; in Out() local
195 auto cpuDebug = CPUFromRequest(req, &threadID); in Out()
[all …]

12345678910>>...63