/Linux-v5.4/arch/s390/crypto/ |
D | paes_s390.c | 175 ret = blkcipher_walk_done(desc, walk, nbytes - k); in ecb_paes_crypt() 178 return blkcipher_walk_done(desc, walk, -EIO); in ecb_paes_crypt() 299 ret = blkcipher_walk_done(desc, walk, nbytes - k); in cbc_paes_crypt() 302 return blkcipher_walk_done(desc, walk, -EIO); in cbc_paes_crypt() 469 ret = blkcipher_walk_done(desc, walk, nbytes - k); in xts_paes_crypt() 472 return blkcipher_walk_done(desc, walk, -EIO); in xts_paes_crypt() 615 ret = blkcipher_walk_done(desc, walk, nbytes - n); in ctr_paes_crypt() 621 return blkcipher_walk_done(desc, walk, -EIO); in ctr_paes_crypt() 638 return blkcipher_walk_done(desc, walk, -EIO); in ctr_paes_crypt() 642 ret = blkcipher_walk_done(desc, walk, 0); in ctr_paes_crypt()
|
D | des_s390.c | 95 ret = blkcipher_walk_done(desc, walk, nbytes - n); in ecb_desall_crypt() 119 ret = blkcipher_walk_done(desc, walk, nbytes - n); in cbc_desall_crypt() 389 ret = blkcipher_walk_done(desc, walk, nbytes - n); in ctr_desall_crypt() 399 ret = blkcipher_walk_done(desc, walk, 0); in ctr_desall_crypt()
|
D | aes_s390.c | 271 ret = blkcipher_walk_done(desc, walk, nbytes - n); in ecb_aes_crypt() 392 ret = blkcipher_walk_done(desc, walk, nbytes - n); in cbc_aes_crypt() 577 ret = blkcipher_walk_done(desc, walk, nbytes - n); in xts_aes_crypt() 722 ret = blkcipher_walk_done(desc, walk, nbytes - n); in ctr_aes_crypt() 735 ret = blkcipher_walk_done(desc, walk, 0); in ctr_aes_crypt()
|
/Linux-v5.4/arch/powerpc/crypto/ |
D | aes-spe-glue.c | 203 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_ecb_encrypt() 231 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_ecb_decrypt() 259 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_cbc_encrypt() 287 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_cbc_decrypt() 317 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_ctr_crypt() 348 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_xts_encrypt() 379 err = blkcipher_walk_done(desc, &walk, ubytes); in ppc_xts_decrypt()
|
/Linux-v5.4/arch/sparc/crypto/ |
D | des_glue.c | 115 err = blkcipher_walk_done(desc, &walk, nbytes); in __ecb_crypt() 160 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_encrypt() 191 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_decrypt() 282 err = blkcipher_walk_done(desc, &walk, nbytes); in __ecb3_crypt() 332 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc3_encrypt() 368 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc3_decrypt()
|
D | aes_glue.c | 239 err = blkcipher_walk_done(desc, &walk, nbytes); in ecb_encrypt() 269 err = blkcipher_walk_done(desc, &walk, nbytes); in ecb_decrypt() 299 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_encrypt() 330 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_decrypt() 375 err = blkcipher_walk_done(desc, &walk, nbytes); in ctr_crypt() 379 err = blkcipher_walk_done(desc, &walk, 0); in ctr_crypt()
|
D | camellia_glue.c | 121 err = blkcipher_walk_done(desc, &walk, nbytes); in __ecb_crypt() 182 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_encrypt() 221 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_decrypt()
|
/Linux-v5.4/drivers/crypto/ |
D | padlock-aes.c | 359 err = blkcipher_walk_done(desc, &walk, nbytes); in ecb_aes_encrypt() 385 err = blkcipher_walk_done(desc, &walk, nbytes); in ecb_aes_decrypt() 434 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_aes_encrypt() 460 err = blkcipher_walk_done(desc, &walk, nbytes); in cbc_aes_decrypt()
|
D | geode-aes.c | 327 err = blkcipher_walk_done(desc, &walk, nbytes); in geode_cbc_decrypt() 358 err = blkcipher_walk_done(desc, &walk, nbytes); in geode_cbc_encrypt() 438 err = blkcipher_walk_done(desc, &walk, nbytes); in geode_ecb_decrypt() 468 ret = blkcipher_walk_done(desc, &walk, nbytes); in geode_ecb_encrypt()
|
/Linux-v5.4/crypto/ |
D | blkcipher.c | 95 int blkcipher_walk_done(struct blkcipher_desc *desc, in blkcipher_walk_done() function 137 EXPORT_SYMBOL_GPL(blkcipher_walk_done); 158 return blkcipher_walk_done(desc, walk, -ENOMEM); in blkcipher_next_slow() 226 return blkcipher_walk_done(desc, walk, -EINVAL); in blkcipher_walk_next()
|
/Linux-v5.4/include/crypto/ |
D | algapi.h | 236 int blkcipher_walk_done(struct blkcipher_desc *desc,
|