Lines Matching refs:blocks
31 int rounds, int blocks);
33 int rounds, int blocks);
36 int rounds, int blocks, u8 iv[]);
39 int rounds, int blocks, u8 ctr[]);
42 int rounds, int blocks, u8 iv[], int);
44 int rounds, int blocks, u8 iv[], int);
89 int rounds, int blocks)) in __ecb_crypt() argument
99 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in __ecb_crypt() local
102 blocks = round_down(blocks, in __ecb_crypt()
107 ctx->rounds, blocks); in __ecb_crypt()
110 walk.nbytes - blocks * AES_BLOCK_SIZE); in __ecb_crypt()
185 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in cbc_decrypt() local
188 blocks = round_down(blocks, in cbc_decrypt()
193 ctx->key.rk, ctx->key.rounds, blocks, in cbc_decrypt()
197 walk.nbytes - blocks * AES_BLOCK_SIZE); in cbc_decrypt()
295 int rounds, int blocks, u8 iv[], int)) in __xts_crypt() argument
326 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE; in __xts_crypt() local
330 blocks = round_down(blocks, in __xts_crypt()
337 rounds, blocks, walk.iv, reorder_last_tweak); in __xts_crypt()
340 walk.nbytes - blocks * AES_BLOCK_SIZE); in __xts_crypt()