Lines Matching refs:inl
177 const unsigned char *in, size_t inl) in cipher_do_cipher() argument
191 cryp.len = inl; in cipher_do_cipher()
203 assert(inl >= ivlen); in cipher_do_cipher()
205 ivptr = in + inl - ivlen; in cipher_do_cipher()
229 assert(inl >= ivlen); in cipher_do_cipher()
231 ivptr = out + inl - ivlen; in cipher_do_cipher()
239 nblocks = (inl + cipher_ctx->blocksize - 1) in cipher_do_cipher()
258 const unsigned char *in, size_t inl) in ctr_do_cipher() argument
265 while (cipher_ctx->num && inl) { in ctr_do_cipher()
267 --inl; in ctr_do_cipher()
272 if (inl > (unsigned int) cipher_ctx->blocksize) { in ctr_do_cipher()
273 nblocks = inl/cipher_ctx->blocksize; in ctr_do_cipher()
277 inl -= len; in ctr_do_cipher()
283 if (inl) { in ctr_do_cipher()
288 while (inl--) { in ctr_do_cipher()