Home
last modified time | relevance | path

Searched refs:m_cur_thread (Results 1 – 25 of 30) sorted by relevance

12

/dports/biology/avida/avida-2.12.4-src/avida-core/source/cpu/
H A DcHardwareSMT.h103 int m_cur_thread; variable
241 int GetCurThread() const { return m_cur_thread; } in GetCurThread()
242 int GetCurThreadID() const { return m_cur_thread; } in GetCurThreadID()
311 m_cur_thread = thread_id; in ThreadSelect()
325 m_cur_thread++; in ThreadNext()
326 if (m_cur_thread >= GetNumThreads()) m_cur_thread = 0; in ThreadNext()
331 if (m_cur_thread == 0) m_cur_thread = GetNumThreads() - 1; in ThreadPrev()
332 else m_cur_thread--; in ThreadPrev()
341 in_thread=m_cur_thread; in GetStack()
350 return m_threads[m_cur_thread].local_stacks[stack_id]; in Stack()
[all …]
H A DcHardwareTransSMT.h102 int m_cur_thread; variable
241 int GetCurThread() const { return m_cur_thread; } in GetCurThread()
242 int GetCurThreadID() const { return m_cur_thread; } in GetCurThreadID()
322 m_cur_thread = thread_id; in ThreadSelect()
336 m_cur_thread++; in ThreadNext()
337 if (m_cur_thread >= GetNumThreads()) m_cur_thread = 0; in ThreadNext()
342 if (m_cur_thread == 0) m_cur_thread = GetNumThreads() - 1; in ThreadPrev()
343 else m_cur_thread--; in ThreadPrev()
352 in_thread=m_cur_thread; in GetStack()
361 return m_threads[m_cur_thread].local_stacks[stack_id]; in Stack()
[all …]
H A DcHardwareExperimental.h192 int m_cur_thread; variable
327 …cHeadCPU& GetActiveHead() { return m_threads[m_cur_thread].heads[m_threads[m_cur_thread].cur_head]… in GetActiveHead()
700 m_cur_thread = thread_num; in ThreadSelect()
709 m_cur_thread++; in ThreadNext()
710 if (m_cur_thread >= m_threads.GetSize()) m_cur_thread = 0; in ThreadNext()
715 if (m_cur_thread == 0) m_cur_thread = m_threads.GetSize() - 1; in ThreadPrev()
716 else m_cur_thread--; in ThreadPrev()
721 if (m_threads[m_cur_thread].cur_stack == 0) { in stackPop()
732 return m_threads[m_cur_thread].stack; in getStack()
741 m_threads[m_cur_thread].cur_stack++; in switchStack()
[all …]
H A DcHardwareCPU.h114 int m_cur_thread; variable
168 …cHeadCPU& GetActiveHead() { return m_threads[m_cur_thread].heads[m_threads[m_cur_thread].cur_head]… in GetActiveHead()
1053 m_cur_thread = thread_num; in ThreadSelect()
1062 m_cur_thread++; in ThreadNext()
1063 if (m_cur_thread >= m_threads.GetSize()) m_cur_thread = 0; in ThreadNext()
1068 if (m_cur_thread == 0) m_cur_thread = m_threads.GetSize() - 1; in ThreadPrev()
1069 else m_cur_thread--; in ThreadPrev()
1097 m_threads[m_cur_thread].stack.Flip(); in StackFlip()
1120 m_threads[m_cur_thread].stack.Clear(); in StackClear()
1128 m_threads[m_cur_thread].cur_stack++; in SwitchStack()
[all …]
H A DcHardwareExperimental.cc466 m_cur_thread = 0; in internalReset()
589 if (m_cur_thread >= m_threads.GetSize()) m_cur_thread = 0; in SingleProcess()
886 fp << m_cur_thread << " "; in PrintMiniTraceStatus()
1338 if (m_cur_thread > kill_thread) m_cur_thread--; in ExitThread()
1858 m_threads[m_cur_thread].reg[op1] = m_threads[m_cur_thread].reg[op2]; in Inst_Swap()
2132 if (m_threads[m_cur_thread].reg[op1].value < m_threads[m_cur_thread].reg[op2].value) { in Inst_MoveHeadIfLess()
2165 if (m_threads[m_cur_thread].reg[op1].value < m_threads[m_cur_thread].reg[op2].value) { in Inst_GotoIfLess()
2501 m_threads[m_cur_thread].wait_value = m_threads[m_cur_thread].reg[wait_value].value; in Inst_WaitCondition_Equal()
2531 m_threads[m_cur_thread].wait_value = m_threads[m_cur_thread].reg[wait_value].value; in Inst_WaitCondition_Less()
2561 m_threads[m_cur_thread].wait_value = m_threads[m_cur_thread].reg[wait_value].value; in Inst_WaitCondition_Greater()
[all …]
H A DcHardwareTransSMT.cc164 m_cur_thread = 0; in internalReset()
198 return (m_threads[m_cur_thread].owner) ? (cBioUnit*) m_threads[m_cur_thread].owner : m_organism; in ThreadGetOwner()
219 m_cur_thread++; in SingleProcess()
236 m_cur_thread = 0; in SingleProcess()
240 m_cur_thread = 1; in SingleProcess()
245 if (m_cur_thread >= m_threads.GetSize()) in SingleProcess()
247 m_cur_thread = 0; in SingleProcess()
250 if(m_threads[m_cur_thread].skipExecution) in SingleProcess()
251 m_cur_thread++; in SingleProcess()
677 …cBioUnit* parent = (m_threads[m_cur_thread].owner) ? (cBioUnit*) m_threads[m_cur_thread].owner : m… in InjectParasite()
[all …]
H A DcHardwareSMT.cc159 m_cur_thread = 0; in internalReset()
188 return (m_threads[m_cur_thread].owner) ? m_threads[m_cur_thread].owner : m_organism; in ThreadGetOwner()
209 m_cur_thread++; in SingleProcess()
210 if (m_cur_thread >= m_threads.GetSize()) m_cur_thread = 0; in SingleProcess()
409 fp << m_cur_thread << " "; in PrintMiniTraceStatus()
743 cBioUnit* parent = (m_threads[m_cur_thread].owner) ? m_threads[m_cur_thread].owner : m_organism; in InjectParasite()
866 if (m_cur_thread == thread_id) ThreadNext(); in ThreadKill()
1144 ThreadKill(m_cur_thread + 1); in Divide_Main()
1497 m_threads[m_cur_thread].heads[head_used]++; in Inst_HeadMove()
1611 if (!thread_id) thread_id = m_cur_thread + 1; in Inst_ThreadSet()
[all …]
H A DcHardwareCPU.cc810 m_cur_thread = 0; in internalReset()
928 int last_thread = m_cur_thread; in SingleProcess()
930 m_cur_thread++; in SingleProcess()
932 if (m_cur_thread >= num_threads) m_cur_thread = 0; in SingleProcess()
953 m_cur_thread = last_thread; in SingleProcess()
1518 int old_thread = m_cur_thread; in InterruptThread()
1519 m_cur_thread = num_threads; in InterruptThread()
1536 m_cur_thread = old_thread; in InterruptThread()
1548 const int kill_thread = m_cur_thread; in KillThread()
1563 if (m_cur_thread > kill_thread) m_cur_thread--; in KillThread()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/sql/
H A Dgcalc_slicescan.cc321 m_cur_thread= 0; in init()
368 sp0->thread= m_cur_thread++; in insert_top_point()
409 sp1->thread= m_cur_thread++; in insert_top_point()
H A Dgcalc_slicescan.h406 sc_thread_id m_cur_thread; variable
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/sql/
H A Dgcalc_slicescan.cc321 m_cur_thread= 0; in init()
368 sp0->thread= m_cur_thread++; in insert_top_point()
409 sp1->thread= m_cur_thread++; in insert_top_point()
H A Dgcalc_slicescan.h406 sc_thread_id m_cur_thread; variable
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/sql/
H A Dgcalc_slicescan.cc321 m_cur_thread= 0; in init()
368 sp0->thread= m_cur_thread++; in insert_top_point()
409 sp1->thread= m_cur_thread++; in insert_top_point()
H A Dgcalc_slicescan.h406 sc_thread_id m_cur_thread; variable
/dports/databases/percona56-server/percona-server-5.6.51-91.0/sql/
H A Dgcalc_slicescan.cc321 m_cur_thread= 0; in init()
368 sp0->thread= m_cur_thread++; in insert_top_point()
409 sp1->thread= m_cur_thread++; in insert_top_point()
H A Dgcalc_slicescan.h406 sc_thread_id m_cur_thread; variable
/dports/databases/mysql56-client/mysql-5.6.51/sql/
H A Dgcalc_slicescan.cc321 m_cur_thread= 0; in init()
368 sp0->thread= m_cur_thread++; in insert_top_point()
409 sp1->thread= m_cur_thread++; in insert_top_point()
H A Dgcalc_slicescan.h406 sc_thread_id m_cur_thread; variable
/dports/databases/mariadb105-client/mariadb-10.5.15/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable
H A Dgcalc_slicescan.cc1125 m_cur_thread= 0; in init()
1456 sp0->thread= m_cur_thread++; in insert_top_node()
1469 sp1->thread= m_cur_thread++; in insert_top_node()
/dports/databases/mariadb103-server/mariadb-10.3.34/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable
/dports/databases/mariadb104-server/mariadb-10.4.24/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable
/dports/databases/mariadb104-client/mariadb-10.4.24/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable
/dports/databases/mariadb103-client/mariadb-10.3.34/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable
/dports/databases/mariadb105-server/mariadb-10.5.15/sql/
H A Dgcalc_slicescan.h506 unsigned int m_cur_thread; variable

12