| /freebsd/sys/dev/liquidio/base/ |
| H A D | lio_device.c | 308 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 D | lio_droq.c | 69 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 D | dispatch.c | 65 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/crypto/openssl/doc/man7/ |
| H A D | openssl-core_dispatch.h.pod | 6 - 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 27 =item dispatch numbers 35 With every dispatch number, there is an associated function type.
|
| /freebsd/sys/dev/sym/ |
| H A D | sym_fw2.h | 90 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 D | sym_fw1.h | 92 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 D | filterprov.c | 33 } 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/lib/libc/rpc/ |
| H A D | svc_generic.c | 76 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 D | svc.c | 169 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 D | DispatchStage.cpp | 77 Error DispatchStage::dispatch(InstRef IR) { in dispatch() function in llvm::mca::DispatchStage 122 unsigned RCUTokenID = RCU.dispatch(IR); in dispatch() 124 IS.dispatch(RCUTokenID); in dispatch() 175 return dispatch(IR); in execute()
|
| /freebsd/crypto/openssl/providers/implementations/rands/ |
| H A D | fips_crng_test.c | 175 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 D | drbg.c | 42 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch, 741 static const OSSL_DISPATCH *find_call(const OSSL_DISPATCH *dispatch, in find_call() argument 744 if (dispatch != NULL) in find_call() 745 while (dispatch->function_id != 0) { in find_call() 746 if (dispatch->function_id == function) in find_call() 747 return dispatch; in find_call() 748 dispatch++; in find_call()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | TaskDispatch.h | 112 virtual void dispatch(std::unique_ptr<Task> T) = 0; 121 void dispatch(std::unique_ptr<Task> T) override; 133 void dispatch(std::unique_ptr<Task> T) override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCScheduleP8.td | 61 // TODO: Model dispatch of cracked instructions.
|
| H A D | PPCScheduleP9.td | 29 // 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 D | P9InstrResources.td | 35 // (EXECE, EXECO) and 1 dispatch (DISP) to the given superslice. 208 // (EXECE, EXECO) and 1 dispatch (DISP) to the given superslice. 403 // dispatch units for the superslice. 411 // dispatch units for the superslice. 489 // 7 cycle DP operation. One DP unit, one EXEC pipeline and 1 dispatch units. 527 // dispatch. 637 // dispatch. 661 // dispatch. 669 // dispatch. 686 // dispatch. [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | TaskDispatch.cpp | 27 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch() function in llvm::orc::InPlaceTaskDispatcher 32 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch() function in llvm::orc::DynamicThreadPoolTaskDispatcher
|
| /freebsd/crypto/krb5/src/lib/rpc/ |
| H A D | svc_auth_unix.c | 58 bool_t *dispatch) in gssrpc__svcauth_unix() argument 138 bool_t *dispatch) in gssrpc__svcauth_short() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAttributes.def | 17 AMDGPU_ATTRIBUTE(DISPATCH_PTR, "amdgpu-no-dispatch-ptr") 19 AMDGPU_ATTRIBUTE(DISPATCH_ID, "amdgpu-no-dispatch-id")
|
| /freebsd/sys/rpc/ |
| H A D | svc_generic.c | 75 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 D | ossl_method_construct.pod | 36 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 D | vasprintf.c | 292 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 D | Makefile | 13 SRCS += blake2-dispatch.c 87 CWARNFLAGS.blake2-dispatch.c += -Wno-unused-const-variable
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-registry.h | 35 std::function<Error()> dispatch(cl::SubCommand *SC);
|
| H A D | llvm-xray.cpp | 38 if (auto C = dispatch(SC)) { in main()
|