Lines Matching defs:dst
147 static void crypto_aegis128_wipe_chunk(struct aegis_state *state, u8 *dst,
150 memzero_explicit(dst, size);
153 static void crypto_aegis128_encrypt_chunk(struct aegis_state *state, u8 *dst,
158 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) {
161 (union aegis_block *)dst;
177 dst += AEGIS_BLOCK_SIZE;
189 memcpy(dst, tmp.bytes, AEGIS_BLOCK_SIZE);
193 dst += AEGIS_BLOCK_SIZE;
210 memcpy(dst, msg.bytes, size);
214 static void crypto_aegis128_decrypt_chunk(struct aegis_state *state, u8 *dst,
219 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) {
222 (union aegis_block *)dst;
238 dst += AEGIS_BLOCK_SIZE;
250 memcpy(dst, tmp.bytes, AEGIS_BLOCK_SIZE);
254 dst += AEGIS_BLOCK_SIZE;
272 memcpy(dst, msg.bytes, size);
326 u8 *dst, const u8 *src,
337 crypt(state, walk->dst.virt.addr, walk->src.virt.addr, nbytes);
405 scatterwalk_map_and_copy(tag.bytes, req->dst, req->assoclen + cryptlen,
469 scatterwalk_map_and_copy(tag.bytes, req->dst, req->assoclen + cryptlen,