Home
last modified time | relevance | path

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

12345678910

/freebsd/sys/dev/liquidio/base/
H A Dlio_device.c308 oct->dispatch.dlist = (struct lio_dispatch *)(buf + configsize); in lio_allocate_device_mem()
520 oct->dispatch.count = 0; in lio_init_dispatch_list()
523 oct->dispatch.dlist[i].opcode = 0; in lio_init_dispatch_list()
524 STAILQ_INIT(&oct->dispatch.dlist[i].head); in lio_init_dispatch_list()
527 mtx_init(&oct->dispatch.lock, "dispatch_lock", NULL, MTX_DEF); in lio_init_dispatch_list()
541 mtx_lock(&oct->dispatch.lock); in lio_delete_dispatch_list()
544 struct lio_stailq_head *dispatch; in lio_delete_dispatch_list() local
546 dispatch = &oct->dispatch.dlist[i].head; in lio_delete_dispatch_list()
547 while (!STAILQ_EMPTY(dispatch)) { in lio_delete_dispatch_list()
548 temp = STAILQ_FIRST(dispatch); in lio_delete_dispatch_list()
[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/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/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/crypto/openssl/test/
H A Dfilterprov.c33 } dispatch[MAX_FILTERS]; member
89 if (globs->dispatch[i].operation == operation_id) { in filter_query()
91 return globs->dispatch[i].alg; in filter_query()
111 if (globs->dispatch[i].alg == algs) in filter_unquery()
248 globs->dispatch[globs->num_dispatch].alg[algnum++] = *algs; in filter_provider_set_filter()
257 globs->dispatch[globs->num_dispatch].operation = operation; in filter_provider_set_filter()
/freebsd/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/lib/libc/rpc/
H A Dsvc_generic.c76 svc_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create()
102 dispatch, nconf) == FALSE) in svc_create()
114 xprt = svc_tp_create(dispatch, prognum, versnum, nconf); in svc_create()
150 svc_tp_create(void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
167 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
H A Dsvc.c169 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_reg()
199 if (s->sc_dispatch == dispatch) in svc_reg()
213 s->sc_dispatch = dispatch; in svc_reg()
269 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_register()
276 assert(dispatch != NULL); in svc_register()
280 if (s->sc_dispatch == dispatch) in svc_register()
290 s->sc_dispatch = dispatch; in svc_register()
/freebsd/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/crypto/openssl/providers/implementations/rands/
H A Dfips_crng_test.c175 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch, in find_call() argument
178 if (dispatch != NULL) in find_call()
179 while (dispatch->function_id != 0) { in find_call()
180 if (dispatch->function_id == function) in find_call()
181 return dispatch; in find_call()
182 dispatch++; in find_call()
H A Ddrbg.c42 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch,
744 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch, in find_call() argument
747 if (dispatch != NULL) in find_call()
748 while (dispatch->function_id != 0) { in find_call()
749 if (dispatch->function_id == function) in find_call()
750 return dispatch; in find_call()
751 dispatch++; in find_call()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h101 virtual void dispatch(std::unique_ptr<Task> T) = 0;
110 void dispatch(std::unique_ptr<Task> T) override;
121 void dispatch(std::unique_ptr<Task> T) override;
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP8.td61 // TODO: Model dispatch of cracked instructions.
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 DPPCScheduleP7.td15 // Note that the dispatch bundle size is 6 (including
26 // 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.
207 // (EXECE, EXECO) and 1 dispatch (DISP) to the given superslice.
402 // dispatch units for the superslice.
410 // dispatch units for the superslice.
488 // 7 cycle DP operation. One DP unit, one EXEC pipeline and 1 dispatch units.
526 // dispatch.
636 // dispatch.
660 // dispatch.
668 // dispatch.
685 // dispatch.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp22 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch() function in llvm::orc::InPlaceTaskDispatcher
27 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch() function in llvm::orc::DynamicThreadPoolTaskDispatcher
/freebsd/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/crypto/krb5/src/lib/rpc/
H A Dsvc_auth_unix.c58 bool_t *dispatch) in gssrpc__svcauth_unix() argument
138 bool_t *dispatch) in gssrpc__svcauth_short() argument
/freebsd/sys/rpc/
H A Dsvc_generic.c75 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create()
108 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
/freebsd/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/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()
/freebsd/sys/modules/blake2/
H A DMakefile13 SRCS += blake2-dispatch.c
87 CWARNFLAGS.blake2-dispatch.c += -Wno-unused-const-variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.h35 std::function<Error()> dispatch(cl::SubCommand *SC);

12345678910