Home
last modified time | relevance | path

Searched refs:dispatch (Results 1 – 25 of 170) sorted by relevance

1234567

/freebsd-13.1/sys/dev/liquidio/base/
H A Dlio_device.c521 oct->dispatch.count = 0; in lio_init_dispatch_list()
547 dispatch = &oct->dispatch.dlist[i].head; in lio_delete_dispatch_list()
558 oct->dispatch.count = 0; in lio_delete_dispatch_list()
594 STAILQ_FOREACH(dispatch, &octeon_dev->dispatch.dlist[idx].head, in lio_get_dispatch()
643 oct->dispatch.count++; in lio_register_dispatch_fn()
663 if (dispatch == NULL) { in lio_register_dispatch_fn()
680 oct->dispatch.count++; in lio_register_dispatch_fn()
736 dfree = dispatch; in lio_unregister_dispatch_fn()
750 dispatch, in lio_unregister_dispatch_fn()
752 dfree = dispatch; in lio_unregister_dispatch_fn()
[all …]
H A Dlio_droq.c70 struct lio_stailq_node *dispatch; in lio_get_dispatch_arg() local
79 mtx_lock(&octeon_dev->dispatch.lock); in lio_get_dispatch_arg()
81 if (octeon_dev->dispatch.count == 0) { in lio_get_dispatch_arg()
82 mtx_unlock(&octeon_dev->dispatch.lock); in lio_get_dispatch_arg()
86 if (octeon_dev->dispatch.dlist[idx].opcode == combined_opcode) { in lio_get_dispatch_arg()
87 fn_arg = octeon_dev->dispatch.dlist[idx].arg; in lio_get_dispatch_arg()
89 STAILQ_FOREACH(dispatch, in lio_get_dispatch_arg()
90 &octeon_dev->dispatch.dlist[idx].head, entries) { in lio_get_dispatch_arg()
91 if (((struct lio_dispatch *)dispatch)->opcode == in lio_get_dispatch_arg()
93 fn_arg = ((struct lio_dispatch *)dispatch)->arg; in lio_get_dispatch_arg()
[all …]
/freebsd-13.1/crypto/openssh/
H A Ddispatch.c66 ssh->dispatch[i] = dflt; in ssh_dispatch_init()
77 ssh->dispatch[i] = fn; in ssh_dispatch_range()
84 ssh->dispatch[type] = fn; in ssh_dispatch_set()
107 ssh->dispatch[type] != NULL) { in ssh_dispatch_run()
113 r = (*ssh->dispatch[type])(type, seqnr, ssh); in ssh_dispatch_run()
/freebsd-13.1/sys/dev/sym/
H A Dsym_fw2.h91 u32 dispatch [ 28]; member
408 PADDR_A (dispatch),
425 PADDR_A (dispatch),
434 PADDR_A (dispatch),
455 PADDR_A (dispatch),
466 PADDR_A (dispatch),
549 PADDR_A (dispatch),
625 PADDR_A (dispatch),
746 PADDR_A (dispatch),
1018 PADDR_A (dispatch),
[all …]
H A Dsym_fw1.h93 u32 dispatch [ 28]; member
439 PADDR_A (dispatch),
456 PADDR_A (dispatch),
465 PADDR_A (dispatch),
486 PADDR_A (dispatch),
497 PADDR_A (dispatch),
580 PADDR_A (dispatch),
648 PADDR_A (dispatch),
786 PADDR_A (dispatch),
1145 PADDR_A (dispatch),
[all …]
/freebsd-13.1/lib/libc/rpc/
H A Dsvc_generic.c83 svc_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create()
109 dispatch, nconf) == FALSE) in svc_create()
121 xprt = svc_tp_create(dispatch, prognum, versnum, nconf); in svc_create()
157 svc_tp_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
174 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
H A Dsvc.c176 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_reg()
206 if (s->sc_dispatch == dispatch) in svc_reg()
220 s->sc_dispatch = dispatch; in svc_reg()
276 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_register()
283 assert(dispatch != NULL); in svc_register()
287 if (s->sc_dispatch == dispatch) in svc_register()
297 s->sc_dispatch = dispatch; in svc_register()
/freebsd-13.1/sys/rpc/
H A Dsvc_generic.c86 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create()
112 dispatch, nconf) == FALSE) { in svc_create()
128 xprt = svc_tp_create(pool, dispatch, prognum, versnum, in svc_create()
152 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
185 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
H A Dsvc.c505 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_reg()
530 if (s->sc_dispatch == dispatch) in svc_reg()
545 s->sc_dispatch = dispatch; in svc_reg()
593 svc_loss_reg(SVCXPRT *xprt, void (*dispatch)(SVCXPRT *)) in svc_loss_reg()
600 if (s->slc_dispatch == dispatch) in svc_loss_reg()
612 s->slc_dispatch = dispatch; in svc_loss_reg()
622 svc_loss_unreg(SVCPOOL *pool, void (*dispatch)(SVCXPRT *)) in svc_loss_unreg()
628 if (s->slc_dispatch == dispatch) { in svc_loss_unreg()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DDispatchStage.cpp78 Error DispatchStage::dispatch(InstRef IR) { in dispatch() function in llvm::mca::DispatchStage
124 unsigned RCUTokenID = RCU.dispatch(IR); in dispatch()
126 IS.dispatch(RCUTokenID); in dispatch()
178 return dispatch(IR); in execute()
/freebsd-13.1/contrib/apr-util/misc/
H A Dapr_thread_pool.c28 #define TASK_PRIORITY_SEG(x) (((x)->dispatch.priority & 0xFF) / 64)
40 } dispatch; member
164 if (task->dispatch.time <= apr_time_now()) { in pop_task()
201 return task->dispatch.time - apr_time_now(); in waiting_time()
425 t->dispatch.time = apr_time_now() + time; in task_new()
428 t->dispatch.priority = priority; in task_new()
452 while (t_next->dispatch.priority > t->dispatch.priority) { in add_if_empty()
497 if (t->dispatch.time < t_loc->dispatch.time) { in schedule_task()
552 t_loc && t_loc->dispatch.priority >= t->dispatch.priority) { in add_task()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP8.td14 // 1. The dispatch bundle slots
130 // and should be 'First' in dispatch.
140 // should be first in the dispatch group.
159 // dispatch group. They are simply cracked, so require DU1,DU2.
215 // first+last in dispatch group.
256 // dispatch slot. The instruction will be broken into two IOPS. The agen
393 // P8 has an 8 insn dispatch group (6 non-branch, 2 branch) and can issue up
399 // up to two branches in a dispatch group.
406 // Try to make sure we have at least 10 dispatch groups in a loop.
H A DPPCScheduleP9.td31 // Try to make sure we have at least 10 dispatch groups in a loop.
32 // A dispatch group is 6 instructions.
55 // x0, x1, x2, and x3 are the dedicated slice dispatch ports, where each
62 // b0 and b1 are dedicated dispatch ports into the branch slice.
65 // Any non BR dispatch ports
136 // dispatch slot but are dispatched to both the even and odd slices of a
144 // Also consumes odd dispatch slice slot of the same superslice at dispatch
151 // must dispatch together to the same superslice.
H A DPPCScheduleP7.td19 // 1. The dispatch bundle slots
61 // (either to a float or XC op). prevents dispatch in that cycle to VS2 of any
70 // IFU/IDU will not dispatch an XS instructon 5 cycles after a vector FP
75 // Instruction dispatch groups have (at most) four non-branch instructions, and
77 // end the dispatch group, but a second branch must be the last in the group.
388 // Note that the dispatch bundle size is 6 (including
397 // Try to make sure we have at least 10 dispatch groups in a loop.
H A DP9InstrResources.td35 // (EXECE, EXECO) and 1 dispatch (DISP) to the given superslice.
400 // dispatch units for the superslice.
408 // dispatch units for the superslice.
524 // dispatch.
632 // dispatch.
656 // dispatch.
664 // dispatch.
681 // dispatch.
689 // dispatch.
885 // requires the remaining 1 dispatch.
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.h35 std::function<Error()> dispatch(cl::SubCommand *SC);
H A Dllvm-xray.cpp38 if (auto C = dispatch(SC)) { in main()
H A Dxray-registry.cpp32 HandlerType dispatch(cl::SubCommand *SC) { in dispatch() function
/freebsd-13.1/sys/modules/blake2/
H A DMakefile15 SRCS += blake2-dispatch.c
89 CWARNFLAGS.blake2-dispatch.c += -Wno-unused-const-variable
/freebsd-13.1/contrib/file/src/
H A Dvasprintf.c294 static int dispatch(xprintf_struct *s) in dispatch() function
587 if (dispatch(s) == EOF) in core()
609 if (dispatch(s) == EOF) in core()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h91 unsigned dispatch(const InstRef &IS);
H A DLSUnit.h264 virtual unsigned dispatch(const InstRef &IR) = 0;
472 unsigned dispatch(const InstRef &IR) override;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DDispatchStage.h61 Error dispatch(InstRef IR);
/freebsd-13.1/sbin/dhclient/
H A DMakefile38 SRCS= dhclient.c clparse.c alloc.c dispatch.c hash.c bpf.c options.c \
/freebsd-13.1/contrib/unbound/libunbound/
H A Dunbound-event.h93 int (*dispatch)(struct ub_event_base*); member

1234567