Lines Matching defs:nbytes
108 while (walk.nbytes >= AES_BLOCK_SIZE) {
109 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
111 if (walk.nbytes < walk.total)
120 walk.nbytes - blocks * AES_BLOCK_SIZE);
168 while (walk.nbytes >= AES_BLOCK_SIZE) {
169 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
177 err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
191 while (walk.nbytes >= AES_BLOCK_SIZE) {
192 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
194 if (walk.nbytes < walk.total)
204 walk.nbytes - blocks * AES_BLOCK_SIZE);
239 while (walk.nbytes > 0) {
240 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
243 if (walk.nbytes < walk.total) {
265 walk.nbytes - blocks * AES_BLOCK_SIZE);
329 int nbytes, err;
357 while (walk.nbytes >= AES_BLOCK_SIZE) {
358 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
360 if (walk.nbytes < walk.total || walk.nbytes % AES_BLOCK_SIZE)
366 nbytes = walk.nbytes;
381 nbytes -= blocks * AES_BLOCK_SIZE;
384 if (walk.nbytes == walk.total && nbytes > 0)
388 err = skcipher_walk_done(&walk, nbytes);
408 nbytes = walk.nbytes;
414 nbytes, ctx->twkey, walk.iv, first ?: 2);
417 nbytes, ctx->twkey, walk.iv, first ?: 2);