Searched refs:blake3_per_cpu_ctx (Results 1 – 3 of 3) sorted by relevance
291 void **blake3_per_cpu_ctx; variable299 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()
97 extern void **blake3_per_cpu_ctx;
55 BLAKE3_CTX *ctx = blake3_per_cpu_ctx[CPU_SEQID]; in abd_checksum_blake3_native()