Lines Matching refs:blocks
29 int rounds, int blocks);
31 int rounds, int blocks);
34 int rounds, int blocks, u8 iv[]);
36 int rounds, int blocks, u8 iv[]);
39 int rounds, int blocks, u8 ctr[]);
42 int rounds, int blocks, u8 iv[],
45 int rounds, int blocks, u8 iv[],
181 unsigned int blocks; in ecb_encrypt() local
189 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) { in ecb_encrypt()
191 (u8 *)ctx->key_enc, num_rounds(ctx), blocks); in ecb_encrypt()
204 unsigned int blocks; in ecb_decrypt() local
212 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) { in ecb_decrypt()
214 (u8 *)ctx->key_dec, num_rounds(ctx), blocks); in ecb_decrypt()
227 unsigned int blocks; in cbc_encrypt() local
235 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) { in cbc_encrypt()
237 (u8 *)ctx->key_enc, num_rounds(ctx), blocks, in cbc_encrypt()
251 unsigned int blocks; in cbc_decrypt() local
259 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) { in cbc_decrypt()
261 (u8 *)ctx->key_dec, num_rounds(ctx), blocks, in cbc_decrypt()
275 int err, blocks; in ctr_encrypt() local
282 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) { in ctr_encrypt()
284 (u8 *)ctx->key_enc, num_rounds(ctx), blocks, in ctr_encrypt()
286 nbytes -= blocks * AES_BLOCK_SIZE; in ctr_encrypt()
293 u8 *tdst = walk.dst.virt.addr + blocks * AES_BLOCK_SIZE; in ctr_encrypt()
294 u8 *tsrc = walk.src.virt.addr + blocks * AES_BLOCK_SIZE; in ctr_encrypt()
301 blocks = (nbytes <= 8) ? -1 : 1; in ctr_encrypt()
304 num_rounds(ctx), blocks, walk.iv); in ctr_encrypt()
319 unsigned int blocks; in xts_encrypt() local
326 for (first = 1; (blocks = (walk.nbytes / AES_BLOCK_SIZE)); first = 0) { in xts_encrypt()
328 (u8 *)ctx->key1.key_enc, rounds, blocks, in xts_encrypt()
344 unsigned int blocks; in xts_decrypt() local
351 for (first = 1; (blocks = (walk.nbytes / AES_BLOCK_SIZE)); first = 0) { in xts_decrypt()
353 (u8 *)ctx->key1.key_dec, rounds, blocks, in xts_decrypt()