Home
last modified time | relevance | path

Searched refs:cbc_ctx (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/sys/contrib/openzfs/module/icp/algs/modes/
H A Dcbc.c242 cbc_init_ctx(cbc_ctx_t *cbc_ctx, char *param, size_t param_len, in cbc_init_ctx() argument
249 copy_block((uchar_t *)param, cbc_ctx->cbc_iv); in cbc_init_ctx()
257 cbc_ctx_t *cbc_ctx; in cbc_alloc_ctx() local
259 if ((cbc_ctx = kmem_zalloc(sizeof (cbc_ctx_t), kmflag)) == NULL) in cbc_alloc_ctx()
262 cbc_ctx->cbc_flags = CBC_MODE; in cbc_alloc_ctx()
263 return (cbc_ctx); in cbc_alloc_ctx()
/freebsd-14.2/sys/contrib/openzfs/module/icp/include/modes/
H A Dmodes.h108 typedef struct cbc_ctx { struct