Home
last modified time | relevance | path

Searched refs:cv_words (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/blake3/
Dblake3_impl.h169 INLINE void store_cv_words(uint8_t bytes_out[32], uint32_t cv_words[8]) { in store_cv_words()
170 store32(&bytes_out[0 * 4], cv_words[0]); in store_cv_words()
171 store32(&bytes_out[1 * 4], cv_words[1]); in store_cv_words()
172 store32(&bytes_out[2 * 4], cv_words[2]); in store_cv_words()
173 store32(&bytes_out[3 * 4], cv_words[3]); in store_cv_words()
174 store32(&bytes_out[4 * 4], cv_words[4]); in store_cv_words()
175 store32(&bytes_out[5 * 4], cv_words[5]); in store_cv_words()
176 store32(&bytes_out[6 * 4], cv_words[6]); in store_cv_words()
177 store32(&bytes_out[7 * 4], cv_words[7]); in store_cv_words()
Dblake3.c82 uint32_t cv_words[8]; in output_chaining_value() local
83 memcpy(cv_words, self->input_cv, 32); in output_chaining_value()
84 blake3_compress_in_place(cv_words, self->block, self->block_len, in output_chaining_value()
86 store_cv_words(cv, cv_words); in output_chaining_value()