Lines Matching refs:need
49 size_t need; in cbc_encrypt_contiguous_blocks() local
76 need = block_size - ctx->cbc_remainder_len; in cbc_encrypt_contiguous_blocks()
78 if (need > remainder) in cbc_encrypt_contiguous_blocks()
82 [ctx->cbc_remainder_len], need); in cbc_encrypt_contiguous_blocks()
104 need); in cbc_encrypt_contiguous_blocks()
133 datap += need; in cbc_encrypt_contiguous_blocks()
176 size_t need; in cbc_decrypt_contiguous_blocks() local
203 need = block_size - ctx->cbc_remainder_len; in cbc_decrypt_contiguous_blocks()
205 if (need > remainder) in cbc_decrypt_contiguous_blocks()
209 [ctx->cbc_remainder_len], need); in cbc_decrypt_contiguous_blocks()
252 bcopy(blockp + ctx->cbc_remainder_len, datap, need); in cbc_decrypt_contiguous_blocks()
257 datap += need; in cbc_decrypt_contiguous_blocks()