Lines Matching refs:nbytes
22 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_segment() local
40 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_segment()
42 return nbytes; in crypto_cbc_encrypt_segment()
50 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_inplace() local
66 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_inplace()
70 return nbytes; in crypto_cbc_encrypt_inplace()
81 while (walk.nbytes) { in crypto_cbc_encrypt()
97 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_segment() local
115 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_decrypt_segment()
119 return nbytes; in crypto_cbc_decrypt_segment()
127 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_inplace() local
138 src += nbytes - (nbytes & (bsize - 1)) - bsize; in crypto_cbc_decrypt_inplace()
143 if ((nbytes -= bsize) < bsize) in crypto_cbc_decrypt_inplace()
152 return nbytes; in crypto_cbc_decrypt_inplace()
163 while (walk.nbytes) { in crypto_cbc_decrypt()