rblkcipher        361 crypto/ablkcipher.c 	struct crypto_report_blkcipher rblkcipher;
rblkcipher        363 crypto/ablkcipher.c 	memset(&rblkcipher, 0, sizeof(rblkcipher));
rblkcipher        365 crypto/ablkcipher.c 	strscpy(rblkcipher.type, "ablkcipher", sizeof(rblkcipher.type));
rblkcipher        366 crypto/ablkcipher.c 	strscpy(rblkcipher.geniv, "<default>", sizeof(rblkcipher.geniv));
rblkcipher        368 crypto/ablkcipher.c 	rblkcipher.blocksize = alg->cra_blocksize;
rblkcipher        369 crypto/ablkcipher.c 	rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize;
rblkcipher        370 crypto/ablkcipher.c 	rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize;
rblkcipher        371 crypto/ablkcipher.c 	rblkcipher.ivsize = alg->cra_ablkcipher.ivsize;
rblkcipher        374 crypto/ablkcipher.c 		       sizeof(rblkcipher), &rblkcipher);
rblkcipher        503 crypto/blkcipher.c 	struct crypto_report_blkcipher rblkcipher;
rblkcipher        505 crypto/blkcipher.c 	memset(&rblkcipher, 0, sizeof(rblkcipher));
rblkcipher        507 crypto/blkcipher.c 	strscpy(rblkcipher.type, "blkcipher", sizeof(rblkcipher.type));
rblkcipher        508 crypto/blkcipher.c 	strscpy(rblkcipher.geniv, "<default>", sizeof(rblkcipher.geniv));
rblkcipher        510 crypto/blkcipher.c 	rblkcipher.blocksize = alg->cra_blocksize;
rblkcipher        511 crypto/blkcipher.c 	rblkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
rblkcipher        512 crypto/blkcipher.c 	rblkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
rblkcipher        513 crypto/blkcipher.c 	rblkcipher.ivsize = alg->cra_blkcipher.ivsize;
rblkcipher        516 crypto/blkcipher.c 		       sizeof(rblkcipher), &rblkcipher);
rblkcipher        943 crypto/skcipher.c 	struct crypto_report_blkcipher rblkcipher;
rblkcipher        947 crypto/skcipher.c 	memset(&rblkcipher, 0, sizeof(rblkcipher));
rblkcipher        949 crypto/skcipher.c 	strscpy(rblkcipher.type, "skcipher", sizeof(rblkcipher.type));
rblkcipher        950 crypto/skcipher.c 	strscpy(rblkcipher.geniv, "<none>", sizeof(rblkcipher.geniv));
rblkcipher        952 crypto/skcipher.c 	rblkcipher.blocksize = alg->cra_blocksize;
rblkcipher        953 crypto/skcipher.c 	rblkcipher.min_keysize = skcipher->min_keysize;
rblkcipher        954 crypto/skcipher.c 	rblkcipher.max_keysize = skcipher->max_keysize;
rblkcipher        955 crypto/skcipher.c 	rblkcipher.ivsize = skcipher->ivsize;
rblkcipher        958 crypto/skcipher.c 		       sizeof(rblkcipher), &rblkcipher);