Home
last modified time | relevance | path

Searched refs:ctd (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/dev/cesa/
H A Dcesa.c284 struct cesa_tdma_desc *ctd; in cesa_alloc_tdesc() local
288 if (!ctd) in cesa_alloc_tdesc()
292 return (ctd); in cesa_alloc_tdesc()
332 if (!ctd) in cesa_tdma_copy()
345 return (ctd); in cesa_tdma_copy()
395 if (!ctd) in cesa_append_packet()
407 if (!ctd) in cesa_append_packet()
524 if (!ctd) in cesa_fill_packet()
531 if (!ctd) in cesa_fill_packet()
813 if (!ctd) in cesa_create_chain()
[all …]
/freebsd/sys/kern/
H A Dsched_ule.c618 tdq_setlowpri(struct tdq *tdq, struct thread *ctd) in tdq_setlowpri() argument
623 if (ctd == NULL) in tdq_setlowpri()
624 ctd = tdq->tdq_curthread; in tdq_setlowpri()
626 if (td == NULL || td->td_priority > ctd->td_priority) in tdq_setlowpri()
627 tdq->tdq_lowpri = ctd->td_priority; in tdq_setlowpri()
2710 struct thread *ctd; in sched_setpreempt() local
2713 ctd = curthread; in sched_setpreempt()
2714 THREAD_LOCK_ASSERT(ctd, MA_OWNED); in sched_setpreempt()
2716 cpri = ctd->td_priority; in sched_setpreempt()
2718 ast_sched_locked(ctd, TDA_SCHED); in sched_setpreempt()
[all …]
H A Dsched_4bsd.c321 struct thread *ctd; in maybe_preempt() local
346 ctd = curthread; in maybe_preempt()
351 cpri = ctd->td_priority; in maybe_preempt()
353 TD_IS_INHIBITED(ctd)) in maybe_preempt()
361 ctd->td_owepreempt = 1; in maybe_preempt()
H A Dkern_intr.c978 struct thread *ctd; in intr_event_schedule_thread() local
987 ctd = curthread; in intr_event_schedule_thread()
997 entropy.td = ctd; in intr_event_schedule_thread()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/perf/
H A Dperf.shlib532 typeset ctd ctds devname lun
540 for ctd in $ctds; do
541 lun_list="$lun_list$ctd:"
553 for ctd in $ctds; do
555 devname=$(readlink -f /dev/dsk/${ctd}s0 | sed -n 's/\/devices\([^:]*\):.*/\1/p')
/freebsd/contrib/tcsh/
H A Dsh.func.c2609 xcatgets(nl_catd ctd, int set_id, int msg_id, const char *s) argument
2614 while ((res = catgets(ctd, set_id, msg_id, s)) == s && errno == EINTR) {
2624 iconv_catgets(nl_catd ctd, int set_id, int msg_id, const char *s) argument
2633 orig = xcatgets(ctd, set_id, msg_id, s);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp1020 if (const auto *ctd = inst_from.dyn_cast<ClassTemplateDecl *>()) in getSourceRange() local
1021 return ctd->getSourceRange(); in getSourceRange()