Searched refs:tid (Results 401 - 425 of 545) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp224 DPrintf("#%d: alloc(%zu) = %p\n", thr->tid, sz, p);
235 DPrintf("#%d: free(%p, %zu)\n", thr->tid, p, sz);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-converter.cpp247 R"({ "name" : "{0}", "ph" : "{1}", "tid" : "{2}", "pid" : "{3}", )"
255 R"({ "name" : "{0}", "ph" : "{1}", "tid" : "{2}", "pid" : "1", )"
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp2001 // Return the index into the hierarchy for this tid and layer type (L1, L2, etc)
2003 int __kmp_dispatch_get_index(int tid, kmp_hier_layer_e type) { argument
2008 return tid;
2012 if (tid >= num_hw_threads)
2013 tid = tid % num_hw_threads;
2014 return (tid / __kmp_hier_threads_per[index]) % __kmp_hier_max_units[index];
5066 int tid = th->th.th_info.ds.ds_tid; local
5103 if (tid < big_nth) {
5104 coreID = tid / (chun
[all...]
H A Dkmp_csupport.cpp296 int tid = __kmp_tid_from_gtid(gtid); local
298 parent_team->t.t_implicit_task_taskdata[tid].ompt_task_info.frame);
388 int tid = __kmp_tid_from_gtid(gtid); local
390 parent_team->t.t_implicit_task_taskdata[tid]
771 int tid = __kmp_tid_from_gtid(global_tid); local
774 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
815 int tid = __kmp_tid_from_gtid(global_tid); local
818 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
1736 int tid = __kmp_tid_from_gtid(global_tid); local
1744 &(team->t.t_implicit_task_taskdata[tid]
1783 int tid = __kmp_tid_from_gtid(global_tid); local
1947 int gtid, tid; local
[all...]
H A Dz_Windows_NT-586_asm.asm515 ; typedef void (*microtask_t)( int *gtid, int *tid, ... );
519 ; int gtid, int tid,
1180 ; typedef void (*microtask_t)( int *gtid, int *tid, ... );
1184 ; int gtid, int tid,
1187 ; (*pkfn) ( &gtid, &tid, argv[0], ... );
1197 ; r8d: tid 32[rbp]
1223 mov QWORD PTR 24[rsp], r8 ; home tid parameter
1281 lea rdx, QWORD PTR $_tid[rbp] ; rdx <= &tid (2nd parm to pkfn)
/freebsd-12-stable/sys/ofed/drivers/infiniband/util/
H A Dmadeye.c247 (unsigned long long)be64_to_cpu(mad_hdr->tid));
371 (unsigned long long)be64_to_cpu(smp->tid));
/freebsd-12-stable/sys/kern/
H A Dkern_time.c71 #define MAKE_THREAD_CPUCLOCK(tid) (CPUCLOCK_BIT|(tid))
198 lwpid_t tid; local
215 tid = id == 0 ? td->td_tid : id;
216 *clk_id = MAKE_THREAD_CPUCLOCK(tid);
293 lwpid_t tid; local
299 tid = clock_id & CPUCLOCK_ID_MASK;
300 td2 = tdfind(tid, p->p_pid);
H A Dsubr_kdb.c606 kdb_thr_lookup(lwpid_t tid) argument
611 while (thr != NULL && thr->td_tid != tid)
/freebsd-12-stable/lib/libthr/thread/
H A Dthr_init.c380 thr_self(&thread->tid);
425 _thr_getscheduler(thread->tid, &thread->attr.sched_policy,
H A Dthr_exit.c327 thr_exit(&curthread->tid);
H A Dthr_list.c109 if (td->tid != TID_TERMINATED) {
/freebsd-12-stable/crypto/openssh/regress/
H A Dforwarding.sh4 tid="local and remote forwarding"
H A Dtest-exec.sh589 verbose ok $tid
591 echo failed $tid
H A Dcfgmatchlisten.sh4 tid="sshd_config matchlisten"
H A Dforward-control.sh4 tid="sshd control of local and remote forwarding"
H A Drekey.sh4 tid="rekey"
/freebsd-12-stable/sys/ofed/drivers/infiniband/core/
H A Dib_cm.c236 __be64 tid; member in struct:cm_id_private
1144 __be16 attr_id, __be64 tid)
1151 hdr->tid = tid;
1318 cm_id_priv->tid = req_msg->hdr.tid;
1360 cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, rcv_msg->hdr.tid);
1509 cm_format_mad_hdr(&mra_msg->hdr, CM_MRA_ATTR_ID, cm_id_priv->tid);
1527 cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, cm_id_priv->tid);
1774 cm_id_priv->tid
1143 cm_format_mad_hdr(struct ib_mad_hdr *hdr, __be16 attr_id, __be64 tid) argument
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_sendrecv.c1212 pthread_t tid; local
1325 if ((err = pthread_create(&tid, NULL,
1336 (void) pthread_cancel(tid);
1337 (void) pthread_join(tid, NULL);
1697 pthread_t tid; local
1709 error = pthread_create(&tid, NULL,
1721 (void) pthread_cancel(tid);
1722 (void) pthread_join(tid, NULL);
1791 pthread_t tid = 0; local
1825 if ((err = pthread_create(&tid, NUL
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DNativeProcessDarwin.cpp1215 const tid_t tid = local
1218 if (tid != LLDB_INVALID_THREAD_ID)
1219 action = m_thread_actions.GetActionForThread(tid, false);
1224 m_thread_actions.SetSignalHandledForThread(tid);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_mac.cpp184 asanThreadRegistry().StartThread(t->tid(), GetTid(), ThreadType::Worker,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/XRay/
H A DFDRTraceWriter.cpp133 return writeMetadata<0u>(OS, R.tid());
/freebsd-12-stable/contrib/ofed/opensm/opensm/
H A Dosm_inform.c315 ib_net64_t tid; local
345 tid = cl_hton64((uint64_t) cl_atomic_inc(&trap_fwd_trans_id) &
348 tid = cl_hton64((uint64_t) cl_atomic_inc(&trap_fwd_trans_id) &
352 tid, IB_MAD_ATTR_NOTICE, 0);
/freebsd-12-stable/sys/contrib/cloudabi/
H A Dcloudabi32_types.h174 typedef void cloudabi32_threadentry_t(cloudabi_tid_t tid, uint32_t aux);
H A Dcloudabi64_types.h174 typedef void cloudabi64_threadentry_t(cloudabi_tid_t tid, uint64_t aux);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp480 int TgKill(pid_t pid, tid_t tid, int sig) { argument
482 return internal_syscall(SYSCALL(tgkill), pid, tid, sig);
484 return internal_syscall(SYSCALL(thr_kill2), pid, tid, sig);
487 return internal_syscall(SYSCALL(thrkill), tid, sig, nullptr);
490 return thr_kill(tid, sig);
964 bool ThreadLister::IsAlive(int tid) { argument
968 internal_snprintf(path, sizeof(path), "/proc/%d/task/%d/status", pid_, tid);

Completed in 418 milliseconds

<<11121314151617181920>>