Home
last modified time | relevance | path

Searched refs:TID (Results 1 – 25 of 42) sorted by relevance

12

/NextBSD/contrib/gdb/gdb/config/i386/
HDnm-i386v42mp.h59 #define MKTID(PID, TID) (MERGEPID(PID, TID) | 0x40000000)
87 #define MKTID(PID, TID) (ptid_build ((PID), (TID), 1)) argument
/NextBSD/lib/libthr/thread/
HDthr_private.h342 #define TID(thread) ((uint32_t) ((thread)->tid)) macro
557 _thr_umutex_trylock((lck), TID(thrd))
560 _thr_umutex_lock((lck), TID(thrd))
563 _thr_umutex_timedlock((lck), TID(thrd), (timo))
566 _thr_umutex_unlock((lck), TID(thrd))
571 _thr_umutex_lock(lck, TID(thrd)); \
577 _thr_umutex_lock_spin(lck, TID(thrd)); \
593 _thr_umutex_unlock((lck), TID(thrd)); \
HDthr_affinity.c54 tid = TID(td); in _pthread_setaffinity_np()
77 tid = TID(td); in _pthread_getaffinity_np()
HDthr_mutex.c251 m->m_lock.m_owner = TID(curthread); in _mutex_fork()
253 m->m_lock.m_owner = TID(curthread) | UMUTEX_CONTESTED; in _mutex_fork()
322 id = TID(curthread); in mutex_trylock_common()
357 id = TID(curthread); in mutex_lock_sleep()
423 if (_thr_umutex_trylock2(&m->m_lock, TID(curthread)) == 0) { in mutex_lock_common()
651 id = TID(curthread); in mutex_unlock_common()
HDthr_getthreadid_np.c47 return (TID(curthread)); in _pthread_getthreadid_np()
HDthr_getcpuclockid.c46 if (clock_getcpuclockid2(TID(pthread), CPUCLOCK_WHICH_TID, clock_id)) in _pthread_getcpuclockid()
HDthr_create.c214 TID(new_thread), cpusetsize, cpusetp)) { in _pthread_create()
HDthr_umtx.c237 _thr_umutex_unlock(m, TID(curthread)); in _thr_ucond_wait()
/NextBSD/sys/dev/pms/freebsd/driver/ini/src/
HDagtiapi.c489 U32 TID; in agtiapi_async() local
500 TID = cgd->ccb_h.target_id; in agtiapi_async()
501 if (TID >= 0 && TID < maxTargets){ in agtiapi_async()
503 TID = INDEX(pmsc, TID); in agtiapi_async()
504 targ = &pmsc->pDevList[TID]; in agtiapi_async()
1803 U32 TID; in agtiapi_cam_action() local
1883 TID = INDEX(pmcsc, targetID); in agtiapi_cam_action()
1884 if (TID < maxTargets) in agtiapi_cam_action()
1886 pDevHandle = pmcsc->pDevList[TID].pDevHandle; in agtiapi_cam_action()
2045 U32 TID = CMND_TO_TARGET(ccb); in agtiapi_QueueCmnd_() local
[all …]
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDAMDGPUPromoteAlloca.cpp343 Value *TID = Builder.CreateAdd(Tmp0, Tmp1); in visitAlloca() local
344 TID = Builder.CreateAdd(TID, TIdZ); in visitAlloca()
348 Indices.push_back(TID); in visitAlloca()
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDResourcePriorityQueue.cpp448 const MCInstrDesc &TID = TII->get(N->getMachineOpcode()); in SUSchedulingCost() local
449 if (TID.isCall()) in SUSchedulingCost()
551 const MCInstrDesc &TID = TII->get(N->getMachineOpcode()); in initNumRegDefsLeft() local
557 NodeNumDefs = std::min(N->getNumValues(), TID.getNumDefs()); in initNumRegDefsLeft()
/NextBSD/cddl/contrib/dtracetoolkit/Examples/
HDj_thread_example.txt6 TIME PID/TID -- THREAD
HDcrash_example.txt17 TID: 1
HDphp_flowinfo_example.txt7 C PID/TID DELTA(us) FILE:LINE TYPE -- FUNC
HDphp_syscolors_example.txt15 C PID/TID DELTA(us) FILE:LINE TYPE -- NAME
/NextBSD/contrib/llvm/include/llvm/IR/
HDDerivedTypes.h316 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument
317 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType()
/NextBSD/sys/dev/aic7xxx/
HDaic79xx.h82 (((scsiid) & TID) >> TID_SHIFT)
111 ((((tcl) >> 4) & TID) >> 4)
115 ((lun) | (((scsiid) & TID) << 4))
135 (scb)->hscb->scsiid = ((col_idx) << TID_SHIFT) & TID; \
HDaic7xxx.h79 (((scsiid) & ((((ahc)->features & AHC_TWIN) != 0) ? TWIN_TID : TID)) \
110 ((((tcl) >> 4) & TID) >> 4)
114 ((lun) | (((scsiid) & TID) << 4))
HDaic79xx_osm.h91 ((((target_id) << TID_SHIFT) & TID) | (our_id))
HDaic7xxx_osm.h102 ((((target_id) << TID_SHIFT) & TID) | (our_id) \
/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDHexagonVLIWPacketizer.cpp409 const MCInstrDesc& TID = MI->getDesc(); in isCondInst() local
412 if ( TID.isConditionalBranch() // && !IsRegisterJump(MI)) || in isCondInst()
960 const MCInstrDesc& TID = MI->getDesc(); in ignorePseudoInstruction() local
961 unsigned SchedClass = TID.getSchedClass(); in ignorePseudoInstruction()
/NextBSD/contrib/gdb/gdb/
HDdefs.h1283 #define MERGEPID(PID, TID) ptid_build (PID, TID, 0) argument
/NextBSD/contrib/llvm/lib/CodeGen/
HDPasses.cpp508 const char *TID = (const char *)(TPI->getTypeInfo()); in addMachinePasses() local
510 insertPass(TID, IID); in addMachinePasses()
/NextBSD/contrib/apr/include/
HDapr_portable.h79 typedef TID apr_os_thread_t;
/NextBSD/contrib/binutils/include/opcode/
HDconvex.h64 #define TID 21 macro
1014 {0,0,rxl,S,TID,0}, /* mov */
1015 {0,0,lr,TID,S,0}, /* mov */

12