Searched refs:dispatch (Results 1 - 25 of 115) sorted by relevance

12345

/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_device.c309 oct->dispatch.dlist = (struct lio_dispatch *)(buf + configsize);
521 oct->dispatch.count = 0;
524 oct->dispatch.dlist[i].opcode = 0;
525 STAILQ_INIT(&oct->dispatch.dlist[i].head);
528 mtx_init(&oct->dispatch.lock, "dispatch_lock", NULL, MTX_DEF);
542 mtx_lock(&oct->dispatch.lock);
545 struct lio_stailq_head *dispatch; local
547 dispatch = &oct->dispatch.dlist[i].head;
548 while (!STAILQ_EMPTY(dispatch)) {
572 struct lio_stailq_node *dispatch; local
656 struct lio_dispatch *dispatch; local
711 struct lio_stailq_node *dispatch, *dfree = NULL, *tmp2; local
[all...]
H A Dlio_droq.c55 * Get the argument that the user set when registering dispatch
58 * @param opcode - the opcode for which the dispatch argument
60 * @param subcode - the subcode for which the dispatch argument
62 * @return Success: void * (argument to the dispatch function)
70 struct lio_stailq_node *dispatch; local
79 mtx_lock(&octeon_dev->dispatch.lock);
81 if (octeon_dev->dispatch.count == 0) {
82 mtx_unlock(&octeon_dev->dispatch.lock);
86 if (octeon_dev->dispatch.dlist[idx].opcode == combined_opcode) {
87 fn_arg = octeon_dev->dispatch
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dllvm-xray.cpp38 if (auto C = dispatch(SC)) {
H A Dxray-registry.h35 std::function<Error()> dispatch(cl::SubCommand *SC);
H A Dxray-registry.cpp32 HandlerType dispatch(cl::SubCommand *SC) { function in namespace:llvm::xray
35 "Attempting to dispatch on un-registered SubCommand.");
/freebsd-11-stable/crypto/heimdal/lib/ipc/
H A Dhi_locl.h67 #include <dispatch/dispatch.h>
H A Dcommon.c38 #include <dispatch/dispatch.h>
/freebsd-11-stable/crypto/openssh/
H A Ddispatch.c1 /* $OpenBSD: dispatch.c,v 1.27 2015/05/01 07:10:01 djm Exp $ */
36 #include "dispatch.h"
70 ssh->dispatch[i] = dflt;
81 ssh->dispatch[i] = fn;
88 ssh->dispatch[type] = fn;
112 ssh->dispatch[type] != NULL) {
119 r = (*ssh->dispatch[type])(type, seqnr, ctxt);
/freebsd-11-stable/sbin/dhclient/
H A DMakefile37 SRCS= dhclient.c clparse.c alloc.c dispatch.c hash.c bpf.c options.c \
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DDispatchStage.h10 /// This file models the dispatch component of an instruction pipeline.
32 // Implements the hardware dispatch logic.
34 // This class is responsible for the dispatch stage, in which instructions are
43 // the value of field 'DispatchWidth'. A "dynamic dispatch stall" occurs when
46 // report when flag '-dispatch-stats' is specified.
62 Error dispatch(InstRef IR);
75 // The dispatch logic internally doesn't buffer instructions. So there is
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h91 unsigned dispatch(const InstRef &IS);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DDispatchStage.cpp10 /// This file models the dispatch component of an instruction pipeline.
78 Error DispatchStage::dispatch(InstRef IR) { function in class:llvm::mca::DispatchStage
79 assert(!CarryOver && "Cannot dispatch another instruction!");
93 // Check if this instructions ends the dispatch group.
127 unsigned RCUTokenID = RCU.dispatch(IR);
129 IS.dispatch(RCUTokenID);
169 // The dispatch logic doesn't internally buffer instructions. It only accepts
176 assert(canDispatch(IR) && "Cannot dispatch another instruction!");
177 return dispatch(IR);
/freebsd-11-stable/crypto/heimdal/base/
H A Dbaselocl.h61 #include <dispatch/dispatch.h>
/freebsd-11-stable/lib/libc/rpc/
H A Dsvc_generic.c81 svc_create(void (*dispatch)(struct svc_req *, SVCXPRT *),
107 dispatch, nconf) == FALSE)
119 xprt = svc_tp_create(dispatch, prognum, versnum, nconf);
155 svc_tp_create(void (*dispatch)(struct svc_req *, SVCXPRT *),
172 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) {
H A Dsvc.c76 * The dispatch routine takes request structs and runs the
169 * The dispatch routine will be called when a rpc request for this
174 void (*dispatch)(struct svc_req *, SVCXPRT *),
204 if (s->sc_dispatch == dispatch)
218 s->sc_dispatch = dispatch;
269 * The dispatch routine will be called when a rpc request for this
274 void (*dispatch)(struct svc_req *, SVCXPRT *),
281 assert(dispatch != NULL);
285 if (s->sc_dispatch == dispatch)
295 s->sc_dispatch = dispatch;
[all...]
/freebsd-11-stable/sys/rpc/
H A Dsvc_generic.c84 void (*dispatch)(struct svc_req *, SVCXPRT *),
110 dispatch, nconf) == FALSE) {
126 xprt = svc_tp_create(pool, dispatch, prognum, versnum,
150 void (*dispatch)(struct svc_req *, SVCXPRT *),
183 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) {
/freebsd-11-stable/sys/dev/sym/
H A Dsym_fw2.h89 u32 dispatch [ 28]; member in struct:SYM_FWA_SCR
406 PADDR_A (dispatch),
423 PADDR_A (dispatch),
432 PADDR_A (dispatch),
453 PADDR_A (dispatch),
464 PADDR_A (dispatch),
547 PADDR_A (dispatch),
623 PADDR_A (dispatch),
744 PADDR_A (dispatch),
1016 PADDR_A (dispatch),
[all...]
H A Dsym_fw1.h91 u32 dispatch [ 28]; member in struct:SYM_FWA_SCR
437 PADDR_A (dispatch),
454 PADDR_A (dispatch),
463 PADDR_A (dispatch),
484 PADDR_A (dispatch),
495 PADDR_A (dispatch),
578 PADDR_A (dispatch),
646 PADDR_A (dispatch),
784 PADDR_A (dispatch),
1143 PADDR_A (dispatch),
[all...]
/freebsd-11-stable/sbin/nvmecontrol/
H A Dnvmecontrol.h91 void dispatch(int argc, char *argv[], struct nvme_function *f);
H A Dnvmecontrol.c76 dispatch(int argc, char *argv[], struct nvme_function *tbl) function
240 dispatch(argc, argv, funcs);
/freebsd-11-stable/contrib/unbound/libunbound/
H A Dunbound-event.h93 int (*dispatch)(struct ub_event_base*); member in struct:ub_event_base_vmt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dos_version_check.c17 #include <dispatch/dispatch.h>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRetireControlUnit.cpp41 unsigned RetireControlUnit::dispatch(const InstRef &IR) { function in class:llvm::mca::RetireControlUnit
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_thread_pool.c28 #define TASK_PRIORITY_SEG(x) (((x)->dispatch.priority & 0xFF) / 64)
40 } dispatch; member in struct:apr_thread_pool_task
164 if (task->dispatch.time <= apr_time_now()) {
201 return task->dispatch.time - apr_time_now();
425 t->dispatch.time = apr_time_now() + time;
428 t->dispatch.priority = priority;
452 while (t_next->dispatch.priority > t->dispatch.priority) {
497 if (t->dispatch.time < t_loc->dispatch
[all...]
/freebsd-11-stable/contrib/file/src/
H A Dvasprintf.c294 static int dispatch(xprintf_struct *s) function
587 if (dispatch(s) == EOF)
609 if (dispatch(s) == EOF)

Completed in 193 milliseconds

12345