Lines Matching defs:nbytes
91 while (walk.nbytes >= AES_BLOCK_SIZE) {
92 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
94 if (walk.nbytes < walk.total)
103 walk.nbytes - blocks * AES_BLOCK_SIZE);
143 unsigned int nbytes;
148 while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
160 nbytes -= AES_BLOCK_SIZE;
161 } while (nbytes >= AES_BLOCK_SIZE);
163 err = skcipher_walk_done(&walk, nbytes);
177 while (walk.nbytes >= AES_BLOCK_SIZE) {
178 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
180 if (walk.nbytes < walk.total)
190 walk.nbytes - blocks * AES_BLOCK_SIZE);
206 while (walk.nbytes > 0) {
209 unsigned int bytes = walk.nbytes;
214 else if (walk.nbytes < walk.total)
225 err = skcipher_walk_done(&walk, walk.nbytes - bytes);
284 while (walk.nbytes >= AES_BLOCK_SIZE) {
285 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
288 if (walk.nbytes < walk.total) {
299 walk.nbytes - blocks * AES_BLOCK_SIZE);