/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/ |
H A D | blake3_generic.c | 156 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 D | blake3_impl.h | 168 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 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 …]
|
H A D | blake3_impl.h | 167 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 D | archive_blake2s_ref.c | 106 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 D | archive_blake2sp_ref.c | 52 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 D | archive_blake2_impl.h | 92 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32() function
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2s-ref.c | 98 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 D | blake2b-ref.c | 105 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 D | blake2bp.c | 35 store32(&P->leaf_length, 0); in blake2bp_init_leaf() 54 store32(&P->leaf_length, 0); in blake2bp_init_root()
|
H A D | blake2-impl.h | 58 static inline void store32( void *dst, uint32_t w ) in store32() function
|
H A D | blake2s.c | 382 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
|
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 84 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 D | blake2_impl.h | 58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() function
|
H A D | blake2b_prov.c | 89 store32(P->leaf_length, 0); in ossl_blake2b_param_init()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrMemory.td | 173 defm STORE32_I64 : WebAssemblyStore<I64, "i64.store32", 0x3e>;
|
H A D | WebAssemblyInstrAtomics.td | 217 defm ATOMIC_STORE32_I64 : AtomicStore<I64, "i64.atomic.store32", 0x1d>;
|