Lines Matching refs:nbytes
21 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_segment() local
39 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_segment()
41 return nbytes; in crypto_cbc_encrypt_segment()
49 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_inplace() local
65 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_inplace()
69 return nbytes; in crypto_cbc_encrypt_inplace()
80 while (walk.nbytes) { in crypto_cbc_encrypt()
96 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_segment() local
114 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_decrypt_segment()
118 return nbytes; in crypto_cbc_decrypt_segment()
126 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_inplace() local
137 src += nbytes - (nbytes & (bsize - 1)) - bsize; in crypto_cbc_decrypt_inplace()
142 if ((nbytes -= bsize) < bsize) in crypto_cbc_decrypt_inplace()
151 return nbytes; in crypto_cbc_decrypt_inplace()
162 while (walk.nbytes) { in crypto_cbc_decrypt()