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