Symbol: XTS_BLOCK_SIZE
arch/powerpc/crypto/aes_xts.c
94
if (!crypto_simd_usable() || (req->cryptlen % XTS_BLOCK_SIZE) != 0) {
crypto/xts.c
110
w.total - w.nbytes + avail < 2 * XTS_BLOCK_SIZE) {
crypto/xts.c
151
scatterwalk_map_and_copy(&b, rctx->tail, 0, XTS_BLOCK_SIZE, 0);
crypto/xts.c
153
scatterwalk_map_and_copy(&b, rctx->tail, 0, XTS_BLOCK_SIZE, 1);
crypto/xts.c
164
int offset = req->cryptlen & ~(XTS_BLOCK_SIZE - 1);
crypto/xts.c
167
int tail = req->cryptlen % XTS_BLOCK_SIZE;
crypto/xts.c
172
offset - XTS_BLOCK_SIZE);
crypto/xts.c
174
scatterwalk_map_and_copy(b, rctx->tail, 0, XTS_BLOCK_SIZE, 0);
crypto/xts.c
180
scatterwalk_map_and_copy(b, rctx->tail, 0, XTS_BLOCK_SIZE + tail, 1);
crypto/xts.c
186
XTS_BLOCK_SIZE, NULL);
crypto/xts.c
192
scatterwalk_map_and_copy(b, rctx->tail, 0, XTS_BLOCK_SIZE, 0);
crypto/xts.c
194
scatterwalk_map_and_copy(b, rctx->tail, 0, XTS_BLOCK_SIZE, 1);
crypto/xts.c
209
if (!err && unlikely(req->cryptlen % XTS_BLOCK_SIZE)) {
crypto/xts.c
229
if (!err && unlikely(req->cryptlen % XTS_BLOCK_SIZE)) {
crypto/xts.c
247
if (req->cryptlen < XTS_BLOCK_SIZE)
crypto/xts.c
253
req->cryptlen & ~(XTS_BLOCK_SIZE - 1), NULL);
crypto/xts.c
272
if (err || likely((req->cryptlen % XTS_BLOCK_SIZE) == 0))
crypto/xts.c
289
if (err || likely((req->cryptlen % XTS_BLOCK_SIZE) == 0))
crypto/xts.c
383
if (alg->base.cra_blocksize != XTS_BLOCK_SIZE)
crypto/xts.c
426
inst->alg.base.cra_blocksize = XTS_BLOCK_SIZE;
crypto/xts.c
430
inst->alg.ivsize = XTS_BLOCK_SIZE;
crypto/xts.c
87
const bool cts = (req->cryptlen % XTS_BLOCK_SIZE);
crypto/xts.c
88
const int bs = XTS_BLOCK_SIZE;
drivers/crypto/atmel-aes.c
1068
if (req->cryptlen < XTS_BLOCK_SIZE)
drivers/crypto/atmel-aes.c
1071
if (!IS_ALIGNED(req->cryptlen, XTS_BLOCK_SIZE))
drivers/crypto/inside-secure/safexcel_cipher.c
2611
if (req->cryptlen < XTS_BLOCK_SIZE)
drivers/crypto/inside-secure/safexcel_cipher.c
2619
if (req->cryptlen < XTS_BLOCK_SIZE)
drivers/crypto/inside-secure/safexcel_cipher.c
2635
.ivsize = XTS_BLOCK_SIZE,
drivers/crypto/inside-secure/safexcel_cipher.c
2643
.cra_blocksize = XTS_BLOCK_SIZE,
drivers/crypto/intel/qat/qat_common/qat_algs.c
1064
if (req->cryptlen < XTS_BLOCK_SIZE)
drivers/crypto/intel/qat/qat_common/qat_algs.c
996
if (req->cryptlen < XTS_BLOCK_SIZE)
drivers/crypto/tegra/tegra-se-aes.c
496
} else if (req->cryptlen < XTS_BLOCK_SIZE) {