Home
last modified time | relevance | path

Searched refs:ic_high (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Dsalsa20_xmm6int-sse2.c98 uint32_t ic_high; in stream_sse2_xor_ic() local
104 ic_high = (uint32_t) (ic >> 32); in stream_sse2_xor_ic()
107 STORE32_LE(&ic_bytes[4], ic_high); in stream_sse2_xor_ic()
H A Dsalsa20_xmm6int-avx2.c107 uint32_t ic_high; in stream_avx2_xor_ic() local
113 ic_high = (uint32_t) (ic >> 32); in stream_avx2_xor_ic()
116 STORE32_LE(&ic_bytes[4], ic_high); in stream_avx2_xor_ic()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
H A Dchacha20_dolbeau-avx2.c134 uint32_t ic_high; in stream_ref_xor_ic() local
140 ic_high = (uint32_t) (ic >> 32); in stream_ref_xor_ic()
143 STORE32_LE(&ic_bytes[4], ic_high); in stream_ref_xor_ic()
H A Dchacha20_dolbeau-ssse3.c128 uint32_t ic_high; in stream_ref_xor_ic() local
134 ic_high = (uint32_t) (ic >> 32); in stream_ref_xor_ic()
137 STORE32_LE(&ic_bytes[4], ic_high); in stream_ref_xor_ic()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/
H A Dchacha20_ref.c271 uint32_t ic_high; in stream_ref_xor_ic() local
277 ic_high = U32V(ic >> 32); in stream_ref_xor_ic()
280 STORE32_LE(&ic_bytes[4], ic_high); in stream_ref_xor_ic()