Home
last modified time | relevance | path

Searched refs:p_ctx (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_mlx_rmpp_ctx.c49 osmv_rmpp_send_ctx_init(osmv_rmpp_send_ctx_t * p_ctx, void *p_arbt_mad, in osmv_rmpp_send_ctx_init() argument
55 CL_ASSERT(p_ctx); in osmv_rmpp_send_ctx_init()
61 p_ctx->is_sa_mad = TRUE; in osmv_rmpp_send_ctx_init()
63 p_ctx->is_sa_mad = FALSE; in osmv_rmpp_send_ctx_init()
65 p_ctx->mad_sz = mad_sz; in osmv_rmpp_send_ctx_init()
67 cl_event_construct(&p_ctx->event); in osmv_rmpp_send_ctx_init()
68 cl_st = cl_event_init(&p_ctx->event, FALSE); in osmv_rmpp_send_ctx_init()
73 st = osmv_rmpp_sar_init(&p_ctx->sar, p_arbt_mad, p_ctx->mad_sz, in osmv_rmpp_send_ctx_init()
74 p_ctx->is_sa_mad); in osmv_rmpp_send_ctx_init()
76 p_ctx->window_first = 1; in osmv_rmpp_send_ctx_init()
[all …]
H A Dosm_vendor_mlx_txn.c229 osmv_txn_ctx_t *p_ctx; in osmv_txn_done() local
247 __osmv_txnmgr_remove_txn(&p_bo->txn_mgr, key, &p_ctx)) { in osmv_txn_done()
255 if (p_ctx->rmpp_txfr.p_rmpp_send_ctx) { in osmv_txn_done()
256 osmv_rmpp_send_ctx_done(p_ctx->rmpp_txfr.p_rmpp_send_ctx); in osmv_txn_done()
259 if (p_ctx->rmpp_txfr.p_rmpp_recv_ctx) { in osmv_txn_done()
260 osmv_rmpp_recv_ctx_done(p_ctx->rmpp_txfr.p_rmpp_recv_ctx); in osmv_txn_done()
263 free(p_ctx); in osmv_txn_done()
H A Dosm_vendor_mlx_ts_anafa.c75 void __osmv_TOPSPIN_ANAFA_receiver_thr(void *p_ctx) in __osmv_TOPSPIN_ANAFA_receiver_thr() argument
80 osmv_bind_obj_t *const p_bo = (osmv_bind_obj_t *) p_ctx; in __osmv_TOPSPIN_ANAFA_receiver_thr()
H A Dosm_vendor_mlx_sim.c84 void __osmv_ibms_receiver_callback(void *p_ctx, ibms_mad_msg_t * p_mad) in __osmv_ibms_receiver_callback() argument
87 osmv_bind_obj_t *const p_bo = (osmv_bind_obj_t *) p_ctx; in __osmv_ibms_receiver_callback()
H A Dosm_vendor_mlx_ts.c79 void __osmv_TOPSPIN_receiver_thr(void *p_ctx) in __osmv_TOPSPIN_receiver_thr() argument
84 osmv_bind_obj_t *const p_bo = (osmv_bind_obj_t *) p_ctx; in __osmv_TOPSPIN_receiver_thr()
/freebsd/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mlx_rmpp_ctx.h98 osmv_rmpp_send_ctx_init(osmv_rmpp_send_ctx_t * p_ctx, void *arbt_mad,
123 osmv_rmpp_send_ctx_get_wf(IN const osmv_rmpp_send_ctx_t * p_ctx) in osmv_rmpp_send_ctx_get_wf() argument
125 CL_ASSERT(p_ctx); in osmv_rmpp_send_ctx_get_wf()
126 return p_ctx->window_first; in osmv_rmpp_send_ctx_get_wf()
139 osmv_rmpp_send_ctx_set_wf(IN osmv_rmpp_send_ctx_t * p_ctx, IN uint32_t val) in osmv_rmpp_send_ctx_set_wf() argument
141 CL_ASSERT(p_ctx); in osmv_rmpp_send_ctx_set_wf()
142 p_ctx->window_first = val; in osmv_rmpp_send_ctx_set_wf()
171 osmv_rmpp_send_ctx_set_wl(IN osmv_rmpp_send_ctx_t * p_ctx, IN uint32_t val) in osmv_rmpp_send_ctx_set_wl() argument
173 CL_ASSERT(p_ctx); in osmv_rmpp_send_ctx_set_wl()
174 p_ctx->window_last = val; in osmv_rmpp_send_ctx_set_wl()
[all …]
/freebsd/sys/dev/random/fenestrasX/
H A Dfx_rng.c121 struct chacha_ctx ctx_copy, *p_ctx; in fxrng_rng_genrandom_internal() local
132 p_ctx = &ctx_copy; in fxrng_rng_genrandom_internal()
147 p_ctx = &rng->rng_prf; in fxrng_rng_genrandom_internal()
150 fxrng_rng_keystream_internal(p_ctx, buf, nbytes); in fxrng_rng_genrandom_internal()
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_init_fw_funcs.c1696 u8 *x_val_ptr, *t_val_ptr, *u_val_ptr, *p_ctx; in ecore_calc_session_ctx_validation() local
1698 p_ctx = (u8* const)p_ctx_mem; in ecore_calc_session_ctx_validation()
1699 x_val_ptr = &p_ctx[con_region_offsets[0][ctx_type]]; in ecore_calc_session_ctx_validation()
1700 t_val_ptr = &p_ctx[con_region_offsets[1][ctx_type]]; in ecore_calc_session_ctx_validation()
1701 u_val_ptr = &p_ctx[con_region_offsets[2][ctx_type]]; in ecore_calc_session_ctx_validation()
1703 OSAL_MEMSET(p_ctx, 0, ctx_size); in ecore_calc_session_ctx_validation()
1713 u8 *p_ctx, *region1_val_ptr; in ecore_calc_task_ctx_validation() local
1715 p_ctx = (u8* const)p_ctx_mem; in ecore_calc_task_ctx_validation()
1716 region1_val_ptr = &p_ctx[task_region_offsets[0][ctx_type]]; in ecore_calc_task_ctx_validation()
1718 OSAL_MEMSET(p_ctx, 0, ctx_size); in ecore_calc_task_ctx_validation()
[all …]
/freebsd/crypto/openssl/providers/implementations/kdfs/
H A Dpbkdf1.c206 ossl_unused void *p_ctx) in kdf_pbkdf1_settable_ctx_params() argument
229 ossl_unused void *p_ctx) in kdf_pbkdf1_gettable_ctx_params() argument
H A Dsshkdf.c180 ossl_unused void *p_ctx) in kdf_sshkdf_settable_ctx_params() argument
204 ossl_unused void *p_ctx) in kdf_sshkdf_gettable_ctx_params() argument
H A Dpbkdf2.c217 ossl_unused void *p_ctx) in kdf_pbkdf2_settable_ctx_params() argument
241 ossl_unused void *p_ctx) in kdf_pbkdf2_gettable_ctx_params() argument
H A Dscrypt.c243 ossl_unused void *p_ctx) in kdf_scrypt_settable_ctx_params() argument
268 ossl_unused void *p_ctx) in kdf_scrypt_gettable_ctx_params() argument
/freebsd/crypto/openssl/providers/implementations/rands/
H A Ddrbg_hmac.c346 ossl_unused void *p_ctx) in drbg_hmac_gettable_ctx_params()
398 ossl_unused void *p_ctx) in drbg_hmac_settable_ctx_params()
345 drbg_hmac_gettable_ctx_params(ossl_unused void * vctx,ossl_unused void * p_ctx) drbg_hmac_gettable_ctx_params() argument
397 drbg_hmac_settable_ctx_params(ossl_unused void * vctx,ossl_unused void * p_ctx) drbg_hmac_settable_ctx_params() argument
H A Ddrbg_hash.c450 ossl_unused void *p_ctx) in drbg_hash_gettable_ctx_params()
496 ossl_unused void *p_ctx) in drbg_hash_settable_ctx_params()
449 drbg_hash_gettable_ctx_params(ossl_unused void * vctx,ossl_unused void * p_ctx) drbg_hash_gettable_ctx_params() argument
495 drbg_hash_settable_ctx_params(ossl_unused void * vctx,ossl_unused void * p_ctx) drbg_hash_settable_ctx_params() argument
/freebsd/crypto/openssl/providers/implementations/macs/
H A Dblake2_mac_impl.c181 ossl_unused void *ctx, ossl_unused void *p_ctx) in blake2_mac_settable_ctx_params() argument
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.c491 ossl_unused void *p_ctx) in cipher_ocb_gettable_ctx_params() argument
503 ossl_unused void *p_ctx) in cipher_ocb_settable_ctx_params() argument
/freebsd/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk248 class_add_prop(ParseState, p_ctx, "ctx")
3621 set(_state, p_ctx, ctx)
3654 _ctx_obj = get(parser_state_get(), p_ctx)
3670 _ctx = get(_state, p_ctx)
3720 _ctx = get(parser_state_get(), p_ctx)