Lines Matching refs:dst
27 static __always_inline void crypto_aegis_block_xor(union aegis_block *dst,
30 dst->words64[0] ^= src->words64[0];
31 dst->words64[1] ^= src->words64[1];
34 static __always_inline void crypto_aegis_block_and(union aegis_block *dst,
37 dst->words64[0] &= src->words64[0];
38 dst->words64[1] &= src->words64[1];
41 static __always_inline void crypto_aegis_aesenc(union aegis_block *dst,
54 dst->words32[0] = cpu_to_le32(d0) ^ key->words32[0];
55 dst->words32[1] = cpu_to_le32(d1) ^ key->words32[1];
56 dst->words32[2] = cpu_to_le32(d2) ^ key->words32[2];
57 dst->words32[3] = cpu_to_le32(d3) ^ key->words32[3];