Lines Matching defs:nbytes
224 unsigned int nbytes;
232 while ((nbytes = walk.nbytes) != 0) {
235 round_down(nbytes, AES_BLOCK_SIZE));
236 err = skcipher_walk_done(&walk, nbytes % AES_BLOCK_SIZE);
248 unsigned int nbytes;
257 while ((nbytes = walk.nbytes) != 0) {
260 round_down(nbytes, AES_BLOCK_SIZE));
261 err = skcipher_walk_done(&walk, nbytes % AES_BLOCK_SIZE);
273 unsigned int nbytes;
281 while ((nbytes = walk.nbytes) != 0) {
284 round_down(nbytes, AES_BLOCK_SIZE),
286 err = skcipher_walk_done(&walk, nbytes % AES_BLOCK_SIZE);
298 unsigned int nbytes;
307 while ((nbytes = walk.nbytes) != 0) {
310 round_down(nbytes, AES_BLOCK_SIZE),
312 err = skcipher_walk_done(&walk, nbytes % AES_BLOCK_SIZE);
326 unsigned int nbytes = walk->nbytes;
330 crypto_xor_cpy(dst, (u8 *) keystream, src, nbytes);
339 unsigned int nbytes;
347 while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
350 round_down(nbytes, AES_BLOCK_SIZE),
352 err = skcipher_walk_done(&walk, nbytes % AES_BLOCK_SIZE);
354 if (walk.nbytes) {