Home
last modified time | relevance | path

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

123456789

/freebsd-src/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-src/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-src/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-src/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-src/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-src/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-src/sys/rpc/
H A Dsvc_generic.c75 void (*dispatch)(struct svc_req *, SVCXPRT *),
108 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_create()
/freebsd-src/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-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h1 //===--------- TaskDispatch.h - ORC task dispatch utils ---------*- C++ -*-===//
95 /// Abstract base for classes that dispatch ORC Tasks.
101 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-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp1 //===------------ TaskDispatch.cpp - ORC task dispatch utils --------------===//
22 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); }
27 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch()
21 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } dispatch() function in llvm::orc::InPlaceTaskDispatcher
26 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { dispatch() function in llvm::orc::DynamicThreadPoolTaskDispatcher
/freebsd-src/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.
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-src/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-src/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()
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;
738 dispatch++; in ossl_drbg_enable_locking()
726 find_call(const OSSL_DISPATCH * dispatch,int function) find_call() argument
/freebsd-src/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-src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/fmv/
H A Dapple.inc
/freebsd-src/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-src/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-src/sys/modules/blake2/
H A DMakefile13 SRCS += blake2-dispatch.c
87 CWARNFLAGS.blake2-dispatch.c += -Wno-unused-const-variable
/freebsd-src/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