Home
last modified time | relevance | path

Searched refs:gcm_pt_buf_len (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/openzfs/module/icp/algs/modes/
H A Dmodes.c181 memset(ctx->gcm_pt_buf, 0, ctx->gcm_pt_buf_len); in gcm_clear_ctx()
182 vmem_free(ctx->gcm_pt_buf, ctx->gcm_pt_buf_len); in gcm_clear_ctx()
H A Dgcm.c345 new_len = ctx->gcm_pt_buf_len + length; in gcm_mode_decrypt_contiguous_blocks()
348 vmem_free(ctx->gcm_pt_buf, ctx->gcm_pt_buf_len); in gcm_mode_decrypt_contiguous_blocks()
354 memcpy(new, ctx->gcm_pt_buf, ctx->gcm_pt_buf_len); in gcm_mode_decrypt_contiguous_blocks()
355 vmem_free(ctx->gcm_pt_buf, ctx->gcm_pt_buf_len); in gcm_mode_decrypt_contiguous_blocks()
357 ASSERT0(ctx->gcm_pt_buf_len); in gcm_mode_decrypt_contiguous_blocks()
361 ctx->gcm_pt_buf_len = new_len; in gcm_mode_decrypt_contiguous_blocks()
391 ASSERT(ctx->gcm_processed_data_len == ctx->gcm_pt_buf_len); in gcm_decrypt_final()
1305 ASSERT3U(ctx->gcm_processed_data_len, ==, ctx->gcm_pt_buf_len); in gcm_decrypt_final_avx()
/freebsd/sys/contrib/openzfs/module/icp/include/modes/
H A Dmodes.h161 size_t gcm_pt_buf_len; member