Lines Matching refs:need
56 size_t need; in cbc_encrypt_contiguous_blocks() local
83 need = block_size - ctx->cbc_remainder_len; in cbc_encrypt_contiguous_blocks()
85 if (need > remainder) in cbc_encrypt_contiguous_blocks()
89 [ctx->cbc_remainder_len], need); in cbc_encrypt_contiguous_blocks()
112 need); in cbc_encrypt_contiguous_blocks()
150 datap += need; in cbc_encrypt_contiguous_blocks()
193 size_t need; in cbc_decrypt_contiguous_blocks() local
220 need = block_size - ctx->cbc_remainder_len; in cbc_decrypt_contiguous_blocks()
222 if (need > remainder) in cbc_decrypt_contiguous_blocks()
226 [ctx->cbc_remainder_len], need); in cbc_decrypt_contiguous_blocks()
269 bcopy(blockp + ctx->cbc_remainder_len, datap, need); in cbc_decrypt_contiguous_blocks()
274 datap += need; in cbc_decrypt_contiguous_blocks()