Lines Matching refs:dst
36 void crypto_aegis128_encrypt_chunk_simd(struct aegis_state *state, u8 *dst,
38 void crypto_aegis128_decrypt_chunk_simd(struct aegis_state *state, u8 *dst,
46 static __always_inline void crypto_aegis_block_xor(union aegis_block *dst,
49 dst->words64[0] ^= src->words64[0];
50 dst->words64[1] ^= src->words64[1];
53 static __always_inline void crypto_aegis_block_and(union aegis_block *dst,
56 dst->words64[0] &= src->words64[0];
57 dst->words64[1] &= src->words64[1];
60 static __always_inline void crypto_aegis_aesenc(union aegis_block *dst,
73 dst->words32[0] = cpu_to_le32(d0) ^ key->words32[0];
74 dst->words32[1] = cpu_to_le32(d1) ^ key->words32[1];
75 dst->words32[2] = cpu_to_le32(d2) ^ key->words32[2];
76 dst->words32[3] = cpu_to_le32(d3) ^ key->words32[3];