cipher_req       2163 drivers/crypto/axis/artpec6_crypto.c 	struct skcipher_request *cipher_req = container_of(req,
cipher_req       2166 drivers/crypto/axis/artpec6_crypto.c 	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->src,
cipher_req       2167 drivers/crypto/axis/artpec6_crypto.c 				 cipher_req->cryptlen - AES_BLOCK_SIZE,
cipher_req       2175 drivers/crypto/axis/artpec6_crypto.c 	struct skcipher_request *cipher_req = container_of(req,
cipher_req       2178 drivers/crypto/axis/artpec6_crypto.c 	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->dst,
cipher_req       2179 drivers/crypto/axis/artpec6_crypto.c 				 cipher_req->cryptlen - AES_BLOCK_SIZE,
cipher_req        576 net/rxrpc/ar-internal.h 	struct skcipher_request	*cipher_req;	/* Packet cipher request buffer */
cipher_req        153 net/rxrpc/rxkad.c 	struct skcipher_request	*cipher_req = call->cipher_req;
cipher_req        155 net/rxrpc/rxkad.c 	if (!cipher_req) {
cipher_req        156 net/rxrpc/rxkad.c 		cipher_req = skcipher_request_alloc(tfm, GFP_NOFS);
cipher_req        157 net/rxrpc/rxkad.c 		if (!cipher_req)
cipher_req        159 net/rxrpc/rxkad.c 		call->cipher_req = cipher_req;
cipher_req        162 net/rxrpc/rxkad.c 	return cipher_req;
cipher_req        170 net/rxrpc/rxkad.c 	if (call->cipher_req)
cipher_req        171 net/rxrpc/rxkad.c 		skcipher_request_free(call->cipher_req);
cipher_req        172 net/rxrpc/rxkad.c 	call->cipher_req = NULL;