Lines Matching refs:nextblocks
250 size_t nextblocks; in ossl_cipher_generic_block_update() local
329 nextblocks = ossl_cipher_fillblock(ctx->buf, &ctx->bufsz, blksz, in ossl_cipher_generic_block_update()
332 nextblocks = inl & ~(blksz-1); in ossl_cipher_generic_block_update()
352 if (nextblocks > 0) { in ossl_cipher_generic_block_update()
353 if (!ctx->enc && ctx->pad && nextblocks == inl) { in ossl_cipher_generic_block_update()
358 nextblocks -= blksz; in ossl_cipher_generic_block_update()
360 outlint += nextblocks; in ossl_cipher_generic_block_update()
366 if (nextblocks > 0) { in ossl_cipher_generic_block_update()
367 if (!ctx->hw->cipher(ctx, out, in, nextblocks)) { in ossl_cipher_generic_block_update()
371 in += nextblocks; in ossl_cipher_generic_block_update()
372 inl -= nextblocks; in ossl_cipher_generic_block_update()