Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_generic.c157 store32(&out[0 * 4], state[0] ^ state[8]); in blake3_compress_xof_generic()
158 store32(&out[1 * 4], state[1] ^ state[9]); in blake3_compress_xof_generic()
159 store32(&out[2 * 4], state[2] ^ state[10]); in blake3_compress_xof_generic()
160 store32(&out[3 * 4], state[3] ^ state[11]); in blake3_compress_xof_generic()
161 store32(&out[4 * 4], state[4] ^ state[12]); in blake3_compress_xof_generic()
162 store32(&out[5 * 4], state[5] ^ state[13]); in blake3_compress_xof_generic()
163 store32(&out[6 * 4], state[6] ^ state[14]); in blake3_compress_xof_generic()
164 store32(&out[7 * 4], state[7] ^ state[15]); in blake3_compress_xof_generic()
165 store32(&out[8 * 4], state[8] ^ cv[0]); in blake3_compress_xof_generic()
166 store32(&out[9 * 4], state[9] ^ cv[1]); in blake3_compress_xof_generic()
[all …]
H A Dblake3_impl.h169 static inline void store32(void *dst, uint32_t w) { in store32() function
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()
/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.h179 INLINE void store32(void *dst, uint32_t w) { in store32() function
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()
/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/kdfs/
H A Dargon2.c224 static ossl_inline void store32(uint8_t *dst, uint32_t w);
279 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() function
354 store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 0); in fill_first_blocks()
355 store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH + 4, l); in fill_first_blocks()
360 store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 1); in fill_first_blocks()
668 store32((uint8_t *)&value, args[tmp]); in initial_hash()
682 store32((uint8_t *)&value, ctx->saltlen); in initial_hash()
691 store32((uint8_t *)&value, ctx->secretlen); in initial_hash()
704 store32((uint8_t *)&value, ctx->adlen); in initial_hash()
858 store32(outlen_bytes, (uint32_t)outlen); in blake2b_long()
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2s_prov.c82 store32(P->leaf_length, 0); in ossl_blake2s_param_init()
314 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.c88 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>;