Searched refs:cv_words (Results 1 – 4 of 4) sorted by relevance
| /freebsd/sys/contrib/openzfs/module/icp/algs/blake3/ |
| H A D | blake3_impl.h | 177 static inline void store_cv_words(uint8_t bytes_out[32], uint32_t cv_words[8]) { in store_cv_words() 178 store32(&bytes_out[0 * 4], cv_words[0]); in store_cv_words() 179 store32(&bytes_out[1 * 4], cv_words[1]); in store_cv_words() 180 store32(&bytes_out[2 * 4], cv_words[2]); in store_cv_words() 181 store32(&bytes_out[3 * 4], cv_words[3]); in store_cv_words() 182 store32(&bytes_out[4 * 4], cv_words[4]); in store_cv_words() 183 store32(&bytes_out[5 * 4], cv_words[5]); in store_cv_words() 184 store32(&bytes_out[6 * 4], cv_words[6]); in store_cv_words() 185 store32(&bytes_out[7 * 4], cv_words[7]); in store_cv_words()
|
| H A D | blake3.c | 137 uint32_t cv_words[8]; in output_chaining_value() local 138 memcpy(cv_words, ctx->input_cv, 32); in output_chaining_value() 139 ops->compress_in_place(cv_words, ctx->block, ctx->block_len, in output_chaining_value() 141 store_cv_words(cv, cv_words); in output_chaining_value()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
| H A D | blake3_impl.h | 187 INLINE void store_cv_words(uint8_t bytes_out[32], uint32_t cv_words[8]) { in store_cv_words() 188 store32(&bytes_out[0 * 4], cv_words[0]); in store_cv_words() 189 store32(&bytes_out[1 * 4], cv_words[1]); in store_cv_words() 190 store32(&bytes_out[2 * 4], cv_words[2]); in store_cv_words() 191 store32(&bytes_out[3 * 4], cv_words[3]); in store_cv_words() 192 store32(&bytes_out[4 * 4], cv_words[4]); in store_cv_words() 193 store32(&bytes_out[5 * 4], cv_words[5]); in store_cv_words() 194 store32(&bytes_out[6 * 4], cv_words[6]); in store_cv_words() 195 store32(&bytes_out[7 * 4], cv_words[7]); in store_cv_words()
|
| H A D | blake3.c | 89 uint32_t cv_words[8]; in output_chaining_value() local 90 memcpy(cv_words, self->input_cv, 32); in output_chaining_value() 91 blake3_compress_in_place(cv_words, self->block, self->block_len, in output_chaining_value() 93 store_cv_words(cv, cv_words); in output_chaining_value()
|