Lines Matching refs:blocks
29 int rounds, int blocks);
31 int rounds, int blocks);
34 int rounds, int blocks, u8 iv[]);
37 int rounds, int blocks, u8 iv[], u8 final[]);
40 int rounds, int blocks, u8 iv[]);
42 int rounds, int blocks, u8 iv[]);
46 int rounds, int blocks);
48 int rounds, int blocks, u8 iv[]);
99 int rounds, int blocks))
109 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
112 blocks = round_down(blocks,
117 ctx->rounds, blocks);
120 walk.nbytes - blocks * AES_BLOCK_SIZE);
169 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
174 ctx->enc, ctx->key.rounds, blocks,
192 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
195 blocks = round_down(blocks,
200 ctx->key.rk, ctx->key.rounds, blocks,
204 walk.nbytes - blocks * AES_BLOCK_SIZE);
240 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
244 blocks = round_down(blocks,
251 ctx->rk, ctx->rounds, blocks, walk.iv, final);
255 u8 *dst = walk.dst.virt.addr + blocks * AES_BLOCK_SIZE;
256 u8 *src = walk.src.virt.addr + blocks * AES_BLOCK_SIZE;
265 walk.nbytes - blocks * AES_BLOCK_SIZE);
320 int rounds, int blocks, u8 iv[]))
358 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
361 blocks = round_down(blocks,
369 if (likely(blocks > 6)) { /* plain NEON is faster otherwise */
376 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks,
379 out += blocks * AES_BLOCK_SIZE;
380 in += blocks * AES_BLOCK_SIZE;
381 nbytes -= blocks * AES_BLOCK_SIZE;