Home
last modified time | relevance | path

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

123456789

/freebsd-14.2/sys/dev/liquidio/base/
H A Dlio_device.c520 oct->dispatch.count = 0; in lio_init_dispatch_list()
546 dispatch = &oct->dispatch.dlist[i].head; in lio_delete_dispatch_list()
557 oct->dispatch.count = 0; in lio_delete_dispatch_list()
593 STAILQ_FOREACH(dispatch, &octeon_dev->dispatch.dlist[idx].head, in lio_get_dispatch()
642 oct->dispatch.count++; in lio_register_dispatch_fn()
662 if (dispatch == NULL) { in lio_register_dispatch_fn()
679 oct->dispatch.count++; in lio_register_dispatch_fn()
735 dfree = dispatch; in lio_unregister_dispatch_fn()
749 dispatch, in lio_unregister_dispatch_fn()
751 dfree = dispatch; in lio_unregister_dispatch_fn()
[all …]
H A Dlio_droq.c69 struct lio_stailq_node *dispatch; in lio_get_dispatch_arg() local
78 mtx_lock(&octeon_dev->dispatch.lock); in lio_get_dispatch_arg()
80 if (octeon_dev->dispatch.count == 0) { in lio_get_dispatch_arg()
81 mtx_unlock(&octeon_dev->dispatch.lock); in lio_get_dispatch_arg()
85 if (octeon_dev->dispatch.dlist[idx].opcode == combined_opcode) { in lio_get_dispatch_arg()
86 fn_arg = octeon_dev->dispatch.dlist[idx].arg; in lio_get_dispatch_arg()
88 STAILQ_FOREACH(dispatch, in lio_get_dispatch_arg()
89 &octeon_dev->dispatch.dlist[idx].head, entries) { in lio_get_dispatch_arg()
90 if (((struct lio_dispatch *)dispatch)->opcode == in lio_get_dispatch_arg()
92 fn_arg = ((struct lio_dispatch *)dispatch)->arg; in lio_get_dispatch_arg()
[all …]
/freebsd-14.2/crypto/openssh/
H A Ddispatch.c65 ssh->dispatch[i] = dflt; in ssh_dispatch_init()
76 ssh->dispatch[i] = fn; in ssh_dispatch_range()
83 ssh->dispatch[type] = fn; in ssh_dispatch_set()
106 ssh->dispatch[type] != NULL) { in ssh_dispatch_run()
112 r = (*ssh->dispatch[type])(type, seqnr, ssh); in ssh_dispatch_run()
/freebsd-14.2/crypto/openssl/test/
H A Dfilterprov.c31 } dispatch[MAX_FILTERS]; member
87 if (globs->dispatch[i].operation == operation_id) { in filter_query()
89 return globs->dispatch[i].alg; in filter_query()
109 if (globs->dispatch[i].alg == algs) in filter_unquery()
209 globs->dispatch[globs->num_dispatch].alg[algnum++] = *algs; in filter_provider_set_filter()
218 globs->dispatch[globs->num_dispatch].operation = operation; in filter_provider_set_filter()
/freebsd-14.2/sys/dev/sym/
H A Dsym_fw2.h90 u32 dispatch [ 28]; member
407 PADDR_A (dispatch),
424 PADDR_A (dispatch),
433 PADDR_A (dispatch),
454 PADDR_A (dispatch),
465 PADDR_A (dispatch),
548 PADDR_A (dispatch),
624 PADDR_A (dispatch),
745 PADDR_A (dispatch),
1017 PADDR_A (dispatch),
[all …]
H A Dsym_fw1.h92 u32 dispatch [ 28]; member
438 PADDR_A (dispatch),
455 PADDR_A (dispatch),
464 PADDR_A (dispatch),
485 PADDR_A (dispatch),
496 PADDR_A (dispatch),
579 PADDR_A (dispatch),
647 PADDR_A (dispatch),
785 PADDR_A (dispatch),
1144 PADDR_A (dispatch),
[all …]
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dopenssl-core_dispatch.h.pod6 - OpenSSL provider dispatch numbers and function types
15 numbers, dispatch numbers and provider interface function types
18 The operation and dispatch numbers are represented with macros, which
35 With every dispatch number, there is an associated function type.
/freebsd-14.2/lib/libc/rpc/
H A Dsvc_generic.c80 svc_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create()
106 dispatch, nconf) == FALSE) in svc_create()
118 xprt = svc_tp_create(dispatch, prognum, versnum, nconf); in svc_create()
154 svc_tp_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
171 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
H A Dsvc.c173 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_reg()
203 if (s->sc_dispatch == dispatch) in svc_reg()
217 s->sc_dispatch = dispatch; in svc_reg()
273 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_register()
280 assert(dispatch != NULL); in svc_register()
284 if (s->sc_dispatch == dispatch) in svc_register()
294 s->sc_dispatch = dispatch; in svc_register()
/freebsd-14.2/sys/rpc/
H A Dsvc_generic.c84 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create()
110 dispatch, nconf) == FALSE) { in svc_create()
126 xprt = svc_tp_create(pool, dispatch, prognum, versnum, in svc_create()
150 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
183 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DDispatchStage.cpp78 Error DispatchStage::dispatch(InstRef IR) { in dispatch() function in llvm::mca::DispatchStage
123 unsigned RCUTokenID = RCU.dispatch(IR); in dispatch()
125 IS.dispatch(RCUTokenID); in dispatch()
176 return dispatch(IR); in execute()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h100 virtual void dispatch(std::unique_ptr<Task> T) = 0;
109 void dispatch(std::unique_ptr<Task> T) override;
117 void dispatch(std::unique_ptr<Task> T) override;
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp21 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch() function in llvm::orc::InPlaceTaskDispatcher
26 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch() function in llvm::orc::DynamicThreadPoolTaskDispatcher
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP9.td29 // Try to make sure we have at least 10 dispatch groups in a loop.
30 // A dispatch group is 6 instructions.
54 // x0, x1, x2, and x3 are the dedicated slice dispatch ports, where each
61 // b0 and b1 are dedicated dispatch ports into the branch slice.
64 // Any non BR dispatch ports
135 // dispatch slot but are dispatched to both the even and odd slices of a
143 // Also consumes odd dispatch slice slot of the same superslice at dispatch
150 // must dispatch together to the same superslice.
H A DP9InstrResources.td35 // (EXECE, EXECO) and 1 dispatch (DISP) to the given superslice.
402 // dispatch units for the superslice.
410 // dispatch units for the superslice.
526 // dispatch.
636 // dispatch.
660 // dispatch.
668 // dispatch.
685 // dispatch.
693 // dispatch.
883 // requires the remaining 1 dispatch.
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAttributes.def17 AMDGPU_ATTRIBUTE(DISPATCH_PTR, "amdgpu-no-dispatch-ptr")
19 AMDGPU_ATTRIBUTE(DISPATCH_ID, "amdgpu-no-dispatch-id")
/freebsd-14.2/crypto/openssl/providers/implementations/rands/
H A Ddrbg.c41 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch,
731 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch, in find_call() argument
734 if (dispatch != NULL) in find_call()
735 while (dispatch->function_id != 0) { in find_call()
736 if (dispatch->function_id == function) in find_call()
737 return dispatch; in find_call()
738 dispatch++; in find_call()
/freebsd-14.2/crypto/openssl/doc/internal/man3/
H A Dossl_method_construct.pod36 on provider dispatch tables need to do so in exactly the same way.
55 providers for a dispatch table given an I<operation_id>, and then
81 when the provider doesn't want its dispatch table stored in a longer
123 dispatch table I<fns>.
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/fmv/
H A Dapple.inc3 #include <dispatch/dispatch.h>
/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.h35 std::function<Error()> dispatch(cl::SubCommand *SC);
H A DRemarkUtil.cpp25 if (auto C = dispatch(SC)) { in handleSubOptions()
/freebsd-14.2/sys/modules/blake2/
H A DMakefile14 SRCS += blake2-dispatch.c
88 CWARNFLAGS.blake2-dispatch.c += -Wno-unused-const-variable
/freebsd-14.2/contrib/file/src/
H A Dvasprintf.c292 static int dispatch(xprintf_struct *s) in dispatch() function
585 if (dispatch(s) == EOF) in core()
605 if (dispatch(s) == EOF) in core()

123456789