Lines Matching refs:nbytes
52 unsigned int nbytes = walk->nbytes; in crypto_cfb_final() local
55 crypto_xor_cpy(dst, stream, src, nbytes); in crypto_cfb_final()
62 unsigned int nbytes = walk->nbytes; in crypto_cfb_encrypt_segment() local
74 } while ((nbytes -= bsize) >= bsize); in crypto_cfb_encrypt_segment()
78 return nbytes; in crypto_cfb_encrypt_segment()
85 unsigned int nbytes = walk->nbytes; in crypto_cfb_encrypt_inplace() local
96 } while ((nbytes -= bsize) >= bsize); in crypto_cfb_encrypt_inplace()
100 return nbytes; in crypto_cfb_encrypt_inplace()
112 while (walk.nbytes >= bsize) { in crypto_cfb_encrypt()
120 if (walk.nbytes) { in crypto_cfb_encrypt()
132 unsigned int nbytes = walk->nbytes; in crypto_cfb_decrypt_segment() local
144 } while ((nbytes -= bsize) >= bsize); in crypto_cfb_decrypt_segment()
148 return nbytes; in crypto_cfb_decrypt_segment()
155 unsigned int nbytes = walk->nbytes; in crypto_cfb_decrypt_inplace() local
165 } while ((nbytes -= bsize) >= bsize); in crypto_cfb_decrypt_inplace()
167 return nbytes; in crypto_cfb_decrypt_inplace()
188 while (walk.nbytes >= bsize) { in crypto_cfb_decrypt()
193 if (walk.nbytes) { in crypto_cfb_decrypt()