Lines Matching refs:nbytes
25 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_segment() local
37 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_segment()
39 return nbytes; in crypto_cbc_encrypt_segment()
47 unsigned int nbytes = walk->nbytes; in crypto_cbc_encrypt_inplace() local
57 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_encrypt_inplace()
61 return nbytes; in crypto_cbc_encrypt_inplace()
74 while (walk.nbytes) { in crypto_cbc_encrypt_walk()
90 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_segment() local
102 } while ((nbytes -= bsize) >= bsize); in crypto_cbc_decrypt_segment()
106 return nbytes; in crypto_cbc_decrypt_segment()
114 unsigned int nbytes = walk->nbytes; in crypto_cbc_decrypt_inplace() local
119 src += nbytes - (nbytes & (bsize - 1)) - bsize; in crypto_cbc_decrypt_inplace()
124 if ((nbytes -= bsize) < bsize) in crypto_cbc_decrypt_inplace()
133 return nbytes; in crypto_cbc_decrypt_inplace()