Home
last modified time | relevance | path

Searched refs:thisThread (Results 1 – 25 of 211) sorted by relevance

123456789

/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Streams/
H A DTimePatterns.sc14 thisThread.endBeat = thisThread.endBeat ? thisThread.beats;
16 thisThread.endBeat = thisThread.endBeat min: thisThread.beats;
25 thisThread.endBeat = thisThread.endBeat + dur;
27 { thisThread.endBeat > thisThread.beats },
54 thisThread.endBeat = thisThread.endBeat ? thisThread.beats min: thisThread.beats;
63 startTime = thisThread.endBeat;
64 thisThread.endBeat = thisThread.endBeat + dur;
68 while { thisThread.endBeat > curTime = thisThread.beats } {
73 while { thisThread.endBeat > curTime = thisThread.beats } {
H A DPenv.sc4 startTime = thisThread.endBeat ? thisThread.beats;
5 thisThread.endBeat = this.times.sum + startTime;
7 { thisThread.beats < thisThread.endBeat }
8 { inval = yield(this.at(thisThread.beats - startTime))};
/dports/games/scummvm/scummvm-2.5.1/engines/saga2/
H A Dsagafunc.cpp71 return (char *)thisThread->strAddress(strNum); in STRING()
182 if (thisThread->argCount > 3 && isActor(obj)) { in scriptActorMove()
532 sp->setWakeUp(getThreadID(thisThread)); in scriptActorSay()
1682 thisThread->argCount >= 4 in scriptActorAssignPatrolRoute()
1993 a->useKnowledge(thisThread->threadArgs); in scriptActorUseKnowledge()
1996 return thisThread->threadArgs.returnVal; in scriptActorUseKnowledge()
2904 thisThread->waitAlarm.set(args[0]); in scriptWait()
2906 thisThread->setExtended(); in scriptWait()
2912 thisThread->waitFrameAlarm.set(args[0]); in scriptWaitFrames()
2914 thisThread->setExtended(); in scriptWaitFrames()
[all …]
/dports/textproc/zorba/zorba-2.7.0/src/zorbautils/
H A Dlock.cpp64 ThreadId thisThread = Runnable::self(); in rlock() local
74 LockRequest req(READ, thisThread); in rlock()
85 if (iter->theThread == thisThread) in rlock()
102 LockRequest req(READ, thisThread); in rlock()
113 if (theHolders[0].theThread == thisThread) in rlock()
149 ThreadId thisThread = Runnable::self(); in wlock() local
159 LockRequest req(WRITE, thisThread); in wlock()
170 if (iter->theThread == thisThread) in wlock()
210 if (theHolders[0].theThread == thisThread) in wlock()
245 ThreadId thisThread = Runnable::self(); in unlock() local
[all …]
/dports/net/socketapi/socketapi-2.2.19/socketapi/
H A Dthread.cc117 Thread* thisThread = (Thread*)argument; in go() local
121 if(thisThread->Flags & TF_CancelDeferred) { in go()
129 thisThread->PID = getpid(); in go()
130 pthread_mutex_lock(&thisThread->StartupMutex); in go()
131 pthread_cond_signal(&thisThread->StartupCondition); in go()
132 pthread_mutex_unlock(&thisThread->StartupMutex); in go()
135 thisThread->run(); in go()
/dports/games/stockfish/Stockfish-sf_14/src/
H A Dsearch.cpp90 Value value_draw(Thread* thisThread) { in value_draw() argument
562 Thread* thisThread = pos.this_thread(); in search() local
571 if (thisThread == Threads.main()) in search()
622 ttMove = rootNode ? thisThread->rootMoves[thisThread->pvIdx].pv[0] in search()
636thisThread->ttHitAverage = (TtHitAverageWindow - 1) * thisThread->ttHitAverage / TtHitAverageWin… in search()
746 eval = value_draw(thisThread); in search()
797 && (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor)) in search()
827 thisThread->nmpColor = us; in search()
831 thisThread->nmpMinPly = 0; in search()
967 if (rootNode && !std::count(thisThread->rootMoves.begin() + thisThread->pvIdx, in search()
[all …]
/dports/games/jchessboard/JChessBoard-1.5/jchessboard/
H A DBoardConnector.java53 private Thread thisThread; field in BoardConnector
124 thisThread.interrupt(); in shutdown()
142 thisThread.interrupt(); in closeConnection()
143 if (thisThread != Thread.currentThread()) { in closeConnection()
145 thisThread.join(); in closeConnection()
320 (thisThread = new Thread(this)).start(); in BoardConnector()
347 (thisThread = new Thread(this)).start(); in BoardConnector()
H A DConnectionListener.java42 private Thread thisThread; field in ConnectionListener
129 thisThread = new Thread(this); in setEnabled()
130 thisThread.setDaemon(true); in setEnabled()
131 thisThread.start(); in setEnabled()
140 thisThread.join(); in setEnabled()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/os_interface/linux/
H A Dfile_logger_linux_tests.cpp41 std::thread::id thisThread = std::this_thread::get_id(); in TEST() local
44 threadIDCheck << " ThreadID: " << thisThread; in TEST()
93 std::thread::id thisThread = std::this_thread::get_id(); in TEST() local
96 threadIDCheck << " ThreadID: " << thisThread; in TEST()
132 std::thread::id thisThread = std::this_thread::get_id(); in TEST() local
135 threadIDCheck << " ThreadID: " << thisThread; in TEST()
163 std::thread::id thisThread = std::this_thread::get_id(); in TEST() local
166 threadIDCheck << " ThreadID: " << thisThread; in TEST()
/dports/games/stratagus/stratagus-3.2.0/src/map/
H A Dfow_utils.cpp178 const uint16_t thisThread = omp_get_thread_num(); in CalcDeltas() local
181 const size_t lBound = TextureSize * (thisThread ) / numOfThreads; in CalcDeltas()
182 const size_t uBound = TextureSize * (thisThread + 1) / numOfThreads; in CalcDeltas()
303 const uint16_t thisThread = omp_get_thread_num(); in ProceedIteration() local
306 const uint16_t lBound = TextureHeight * (thisThread ) / numOfThreads; in ProceedIteration()
307 const uint16_t uBound = TextureHeight * (thisThread + 1) / numOfThreads; in ProceedIteration()
344 const uint16_t thisThread = omp_get_thread_num(); in ProceedIteration() local
347 const uint16_t lBound = TextureWidth * (thisThread ) / numOfThreads; in ProceedIteration()
348 const uint16_t uBound = TextureWidth * (thisThread + 1) / numOfThreads; in ProceedIteration()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Core/
H A DCondition.sc9 waitingThreads = waitingThreads.add(thisThread.threadPlayer);
15 waitingThreads = waitingThreads.add(thisThread.threadPlayer);
22 time = thisThread.seconds;
33 time = thisThread.seconds;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/
H A DBatchingLock.java246 Thread thisThread = Thread.currentThread(); in getThreadInfo() local
248 ThreadInfo info = infos.get(thisThread); in getThreadInfo()
270 Thread thisThread = Thread.currentThread(); in acquire() local
271 infos.put(thisThread, info); in acquire()
273 …if(Policy.DEBUG_THREADING) System.out.println("[" + thisThread.getName() + "] acquired batching lo… in acquire()
317 Thread thisThread = Thread.currentThread(); in release() local
318 …if(Policy.DEBUG_THREADING) System.out.println("[" + thisThread.getName() + "] released batching lo… in release()
319 infos.remove(thisThread); in release()
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/libdruntime/core/thread/
H A Dosthread.d1318 thisThread.m_isDaemon = true; in private()
1319 thisThread.tlsGCdataInit(); in private()
1320 Thread.setThis( thisThread ); in private()
1324 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in private()
1325 assert( thisThread.m_tmach != thisThread.m_tmach.init ); in private()
1332 return thisThread; in private()
1382 thisThread.m_addr = addr; in version()
1408 return thisThread; in version()
2150 assert( thisThread.m_addr != thisThread.m_addr.init ); in thread_init()
2151 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in thread_init()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/libdruntime/core/thread/
H A Dosthread.d1306 thisThread.m_isDaemon = true; in private()
1307 thisThread.tlsGCdataInit(); in private()
1308 Thread.setThis( thisThread ); in private()
1312 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in private()
1313 assert( thisThread.m_tmach != thisThread.m_tmach.init ); in private()
1320 return thisThread; in private()
1370 thisThread.m_addr = addr; in version()
1396 return thisThread; in version()
2109 assert( thisThread.m_addr != thisThread.m_addr.init ); in thread_init()
2110 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in thread_init()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libphobos/libdruntime/core/thread/
H A Dosthread.d1306 thisThread.m_isDaemon = true; in private()
1307 thisThread.tlsGCdataInit(); in private()
1308 Thread.setThis( thisThread ); in private()
1312 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in private()
1313 assert( thisThread.m_tmach != thisThread.m_tmach.init ); in private()
1320 return thisThread; in private()
1370 thisThread.m_addr = addr; in version()
1396 return thisThread; in version()
2109 assert( thisThread.m_addr != thisThread.m_addr.init ); in thread_init()
2110 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in thread_init()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/libdruntime/core/thread/
H A Dosthread.d1306 thisThread.m_isDaemon = true; in private()
1307 thisThread.tlsGCdataInit(); in private()
1308 Thread.setThis( thisThread ); in private()
1312 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in private()
1313 assert( thisThread.m_tmach != thisThread.m_tmach.init ); in private()
1320 return thisThread; in private()
1370 thisThread.m_addr = addr; in version()
1396 return thisThread; in version()
2109 assert( thisThread.m_addr != thisThread.m_addr.init ); in thread_init()
2110 thisThread.m_tmach = pthread_mach_thread_np( thisThread.m_addr ); in thread_init()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/HelpSource/Reference/
H A DrandomSeed.schelp35 …om number generator from the parent thread (link::Classes/Thread#.thisThread#thisThread::). If no …
39 To set the main random seed for the entire application, then, evaluate code::thisThread.randSeed = …
42 thisThread.randSeed = 1923;
53 thisThread.randSeed = 1923;
62 thisThread.randSeed = 1000;
67 thisThread.randSeed = 1000;
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/util/concurrent/
H A DDelayQueue.java226 Thread thisThread = Thread.currentThread(); in take() local
227 leader = thisThread; in take()
231 if (leader == thisThread) in take()
276 Thread thisThread = Thread.currentThread(); in poll() local
277 leader = thisThread; in poll()
282 if (leader == thisThread) in poll()

123456789