Lines Matching full:blocks
29 int rounds, int blocks);
31 int rounds, int blocks);
34 int rounds, int blocks, u8 iv[]);
37 int rounds, int blocks, u8 ctr[], u8 final[]);
40 int rounds, int blocks, u8 iv[], int);
42 int rounds, int blocks, u8 iv[], int);
87 int rounds, int blocks)) in __ecb_crypt() argument
97 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in __ecb_crypt() local
100 blocks = round_down(blocks, in __ecb_crypt()
105 ctx->rounds, blocks); in __ecb_crypt()
108 walk.nbytes - blocks * AES_BLOCK_SIZE); in __ecb_crypt()
171 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in cbc_decrypt() local
174 blocks = round_down(blocks, in cbc_decrypt()
179 ctx->key.rk, ctx->key.rounds, blocks, in cbc_decrypt()
183 walk.nbytes - blocks * AES_BLOCK_SIZE); in cbc_decrypt()
242 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in ctr_encrypt() local
246 blocks = round_down(blocks, in ctr_encrypt()
253 ctx->rk, ctx->rounds, blocks, walk.iv, final); in ctr_encrypt()
257 u8 *dst = walk.dst.virt.addr + blocks * AES_BLOCK_SIZE; in ctr_encrypt()
258 u8 *src = walk.src.virt.addr + blocks * AES_BLOCK_SIZE; in ctr_encrypt()
267 walk.nbytes - blocks * AES_BLOCK_SIZE); in ctr_encrypt()
342 int rounds, int blocks, u8 iv[], int)) in __xts_crypt() argument
372 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in __xts_crypt() local
376 blocks = round_down(blocks, in __xts_crypt()
383 ctx->key.rounds, blocks, walk.iv, reorder_last_tweak); in __xts_crypt()
386 walk.nbytes - blocks * AES_BLOCK_SIZE); in __xts_crypt()