Lines Matching +full:de +full:- +full:assert
9 * or http://opensource.org/licenses/CDDL-1.0.
23 * Copyright 2022 Tino Reichardt <milky-zfs@mcmilk.de>
29 * Computes a native 256-bit BLAKE3 MAC checksum. Please note that this
39 ASSERT(ctx_template != 0); in zio_checksum_blake3_native()
51 * BLAKE3 is internally endian-insensitive).
59 ASSERT(ctx_template != 0); in zio_checksum_blake3_byteswap()
62 zcp->zc_word[0] = BSWAP_64(tmp.zc_word[0]); in zio_checksum_blake3_byteswap()
63 zcp->zc_word[1] = BSWAP_64(tmp.zc_word[1]); in zio_checksum_blake3_byteswap()
64 zcp->zc_word[2] = BSWAP_64(tmp.zc_word[2]); in zio_checksum_blake3_byteswap()
65 zcp->zc_word[3] = BSWAP_64(tmp.zc_word[3]); in zio_checksum_blake3_byteswap()
77 ASSERT(sizeof (salt->zcs_bytes) == 32); in zio_checksum_blake3_tmpl_init()
81 Blake3_InitKeyed(ctx, salt->zcs_bytes); in zio_checksum_blake3_tmpl_init()