Searched refs:store32 (Results 1 – 2 of 2) sorted by relevance
/hardware/google/gfxstream/guest/mesa/src/util/blake3/ |
D | blake3_portable.c | 107 store32(&out[0 * 4], state[0] ^ state[8]); in blake3_compress_xof_portable() 108 store32(&out[1 * 4], state[1] ^ state[9]); in blake3_compress_xof_portable() 109 store32(&out[2 * 4], state[2] ^ state[10]); in blake3_compress_xof_portable() 110 store32(&out[3 * 4], state[3] ^ state[11]); in blake3_compress_xof_portable() 111 store32(&out[4 * 4], state[4] ^ state[12]); in blake3_compress_xof_portable() 112 store32(&out[5 * 4], state[5] ^ state[13]); in blake3_compress_xof_portable() 113 store32(&out[6 * 4], state[6] ^ state[14]); in blake3_compress_xof_portable() 114 store32(&out[7 * 4], state[7] ^ state[15]); in blake3_compress_xof_portable() 115 store32(&out[8 * 4], state[8] ^ cv[0]); in blake3_compress_xof_portable() 116 store32(&out[9 * 4], state[9] ^ cv[1]); in blake3_compress_xof_portable() [all …]
|
D | blake3_impl.h | 161 INLINE void store32(void *dst, uint32_t w) { in store32() function 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()
|