Lines Matching defs:nbytes
37 unsigned int nbytes = walk->nbytes;
40 crypto_xor_cpy(dst, keystream, src, nbytes);
54 unsigned int nbytes = walk->nbytes;
66 } while ((nbytes -= bsize) >= bsize);
68 return nbytes;
78 unsigned int nbytes = walk->nbytes;
93 } while ((nbytes -= bsize) >= bsize);
95 return nbytes;
104 unsigned int nbytes;
109 while (walk.nbytes >= bsize) {
111 nbytes = crypto_ctr_crypt_inplace(&walk, cipher);
113 nbytes = crypto_ctr_crypt_segment(&walk, cipher);
115 err = skcipher_walk_done(&walk, nbytes);
118 if (walk.nbytes) {