Lines Matching defs:nbytes
40 unsigned int nbytes = walk->nbytes;
45 crypto_xor_cpy(dst, keystream, src, nbytes);
56 unsigned int nbytes = walk->nbytes;
69 } while ((nbytes -= XCTR_BLOCKSIZE) >= XCTR_BLOCKSIZE);
71 return nbytes;
80 unsigned int nbytes = walk->nbytes;
95 } while ((nbytes -= XCTR_BLOCKSIZE) >= XCTR_BLOCKSIZE);
97 return nbytes;
105 unsigned int nbytes;
111 while (walk.nbytes >= XCTR_BLOCKSIZE) {
113 nbytes = crypto_xctr_crypt_inplace(&walk, cipher,
116 nbytes = crypto_xctr_crypt_segment(&walk, cipher,
119 byte_ctr += walk.nbytes - nbytes;
120 err = skcipher_walk_done(&walk, nbytes);
123 if (walk.nbytes) {