Home
last modified time | relevance | path

Searched refs:store32 (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_generic.c156 store32(&out[0 * 4], state[0] ^ state[8]); in blake3_compress_xof_generic()
157 store32(&out[1 * 4], state[1] ^ state[9]); in blake3_compress_xof_generic()
158 store32(&out[2 * 4], state[2] ^ state[10]); in blake3_compress_xof_generic()
159 store32(&out[3 * 4], state[3] ^ state[11]); in blake3_compress_xof_generic()
160 store32(&out[4 * 4], state[4] ^ state[12]); in blake3_compress_xof_generic()
161 store32(&out[5 * 4], state[5] ^ state[13]); in blake3_compress_xof_generic()
162 store32(&out[6 * 4], state[6] ^ state[14]); in blake3_compress_xof_generic()
163 store32(&out[7 * 4], state[7] ^ state[15]); in blake3_compress_xof_generic()
164 store32(&out[8 * 4], state[8] ^ cv[0]); in blake3_compress_xof_generic()
165 store32(&out[9 * 4], state[9] ^ cv[1]); in blake3_compress_xof_generic()
[all …]
H A Dblake3_impl.h168 static inline void store32(void *dst, uint32_t w) { in store32() function
177 store32(&bytes_out[0 * 4], cv_words[0]); in store_cv_words()
178 store32(&bytes_out[1 * 4], cv_words[1]); in store_cv_words()
179 store32(&bytes_out[2 * 4], cv_words[2]); in store_cv_words()
180 store32(&bytes_out[3 * 4], cv_words[3]); in store_cv_words()
181 store32(&bytes_out[4 * 4], cv_words[4]); in store_cv_words()
182 store32(&bytes_out[5 * 4], cv_words[5]); in store_cv_words()
183 store32(&bytes_out[6 * 4], cv_words[6]); in store_cv_words()
184 store32(&bytes_out[7 * 4], cv_words[7]); in store_cv_words()
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_portable.c107 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 …]
H A Dblake3_impl.h167 INLINE void store32(void *dst, uint32_t w) { in store32()
176 store32(&bytes_out[0 * 4], cv_words[0]); in store_cv_words()
177 store32(&bytes_out[1 * 4], cv_words[1]); in store_cv_words()
178 store32(&bytes_out[2 * 4], cv_words[2]); in store_cv_words()
179 store32(&bytes_out[3 * 4], cv_words[3]); in store_cv_words()
180 store32(&bytes_out[4 * 4], cv_words[4]); in store_cv_words()
181 store32(&bytes_out[5 * 4], cv_words[5]); in store_cv_words()
182 store32(&bytes_out[6 * 4], cv_words[6]); in store_cv_words()
183 store32(&bytes_out[7 * 4], cv_words[7]); in store_cv_words()
166 INLINE void store32(void *dst, uint32_t w) { store32() function
/freebsd/contrib/libarchive/libarchive/
H A Darchive_blake2s_ref.c106 store32( &P->leaf_length, 0 ); in blake2s_init()
107 store32( &P->node_offset, 0 ); in blake2s_init()
129 store32( &P->leaf_length, 0 ); in blake2s_init_key()
130 store32( &P->node_offset, 0 ); in blake2s_init_key()
260 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
H A Darchive_blake2sp_ref.c52 store32( &P->leaf_length, 0 ); in blake2sp_init_leaf()
53 store32( &P->node_offset, offset ); in blake2sp_init_leaf()
69 store32( &P->leaf_length, 0 ); in blake2sp_init_root()
70 store32( &P->node_offset, 0 ); in blake2sp_init_root()
H A Darchive_blake2_impl.h92 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32() function
/freebsd/sys/contrib/libb2/
H A Dblake2s-ref.c98 store32( &P->leaf_length, leaf_length ); in blake2s_param_set_leaf_length()
188 store32( &P->leaf_length, 0 ); in blake2s_init()
210 store32( &P->leaf_length, 0 ); in blake2s_init_key()
342 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
H A Dblake2b-ref.c105 store32( &P->leaf_length, leaf_length ); in blake2b_param_set_leaf_length()
194 store32( &P->leaf_length, 0 ); in blake2b_init()
217 store32( &P->leaf_length, 0 ); in blake2b_init_key()
H A Dblake2bp.c35 store32(&P->leaf_length, 0); in blake2bp_init_leaf()
54 store32(&P->leaf_length, 0); in blake2bp_init_root()
H A Dblake2-impl.h58 static inline void store32( void *dst, uint32_t w ) in store32() function
H A Dblake2s.c382 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2s_prov.c84 store32(P->leaf_length, 0); in ossl_blake2s_param_init()
315 store32(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2s_final()
H A Dblake2_impl.h58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() function
H A Dblake2b_prov.c89 store32(P->leaf_length, 0); in ossl_blake2b_param_init()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrMemory.td173 defm STORE32_I64 : WebAssemblyStore<I64, "i64.store32", 0x3e>;
H A DWebAssemblyInstrAtomics.td217 defm ATOMIC_STORE32_I64 : AtomicStore<I64, "i64.atomic.store32", 0x1d>;