Lines Matching refs:tail
401 u8 __aligned(8) tail[AES_BLOCK_SIZE];
407 * Tell aes_ctr_encrypt() to process a tail block.
412 ce_aes_ctr_encrypt(tail, NULL, ctx->key_enc, num_rounds(ctx),
415 crypto_xor_cpy(tdst, tsrc, tail, nbytes);
449 int tail = req->cryptlen % AES_BLOCK_SIZE;
460 if (unlikely(tail > 0 && walk.nbytes < walk.total)) {
476 tail = 0;
493 if (err || likely(!tail))
500 skcipher_request_set_crypt(req, src, dst, AES_BLOCK_SIZE + tail,
521 int tail = req->cryptlen % AES_BLOCK_SIZE;
532 if (unlikely(tail > 0 && walk.nbytes < walk.total)) {
548 tail = 0;
565 if (err || likely(!tail))
572 skcipher_request_set_crypt(req, src, dst, AES_BLOCK_SIZE + tail,