Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_impl.c291 void **blake3_per_cpu_ctx; variable
299 blake3_per_cpu_ctx = kmem_alloc(max_ncpus * sizeof (void *), KM_SLEEP); in blake3_per_cpu_ctx_init()
301 blake3_per_cpu_ctx[i] = kmem_alloc(sizeof (BLAKE3_CTX), in blake3_per_cpu_ctx_init()
310 memset(blake3_per_cpu_ctx[i], 0, sizeof (BLAKE3_CTX)); in blake3_per_cpu_ctx_fini()
311 kmem_free(blake3_per_cpu_ctx[i], sizeof (BLAKE3_CTX)); in blake3_per_cpu_ctx_fini()
313 memset(blake3_per_cpu_ctx, 0, max_ncpus * sizeof (void *)); in blake3_per_cpu_ctx_fini()
314 kmem_free(blake3_per_cpu_ctx, max_ncpus * sizeof (void *)); in blake3_per_cpu_ctx_fini()
/freebsd/sys/contrib/openzfs/include/sys/
H A Dblake3.h97 extern void **blake3_per_cpu_ctx;
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dblake3_zfs.c55 BLAKE3_CTX *ctx = blake3_per_cpu_ctx[CPU_SEQID]; in abd_checksum_blake3_native()