Home
last modified time | relevance | path

Searched refs:Bout (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
H A Dpwhash_scryptsalsa208sha256_sse.c112 blockmix_salsa8(const __m128i *Bin, __m128i *Bout, size_t r) in blockmix_salsa8() argument
126 SALSA20_8_XOR(Bin, Bout) in blockmix_salsa8()
134 SALSA20_8_XOR(&Bin[i * 8 + 4], &Bout[(r + i) * 4 + 4]) in blockmix_salsa8()
141 SALSA20_8_XOR(&Bin[i * 8], &Bout[i * 4]) in blockmix_salsa8()
147 SALSA20_8_XOR(&Bin[i * 8 + 4], &Bout[(r + i) * 4 + 4]) in blockmix_salsa8()
163 blockmix_salsa8_xor(const __m128i *Bin1, const __m128i *Bin2, __m128i *Bout, in blockmix_salsa8_xor() argument
176 SALSA20_8_XOR(Bin2, Bout) in blockmix_salsa8_xor()
185 SALSA20_8_XOR(&Bin2[i * 8 + 4], &Bout[(r + i) * 4 + 4]) in blockmix_salsa8_xor()
193 SALSA20_8_XOR(&Bin2[i * 8], &Bout[i * 4]) in blockmix_salsa8_xor()
200 SALSA20_8_XOR(&Bin2[i * 8 + 4], &Bout[(r + i) * 4 + 4]) in blockmix_salsa8_xor()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c178 blockmix_salsa8(const uint32_t *Bin, uint32_t *Bout, uint32_t *X, size_t r) in blockmix_salsa8() argument
194 blkcpy_64((escrypt_block_t *) &Bout[i * 8], (escrypt_block_t *) X); in blockmix_salsa8()
202 blkcpy_64((escrypt_block_t *) &Bout[i * 8 + r * 16], in blockmix_salsa8()