Lines Matching refs:accumulated_length
483 size_t olength, accumulated_length; in cipher_encrypt() local
490 accumulated_length = 0; in cipher_encrypt()
497 accumulated_length = operation.iv_length; in cipher_encrypt()
507 accumulated_length += olength; in cipher_encrypt()
509 status = cipher_finish( &operation, output + accumulated_length, in cipher_encrypt()
510 output_size - accumulated_length, &olength ); in cipher_encrypt()
514 *output_length = accumulated_length + olength; in cipher_encrypt()
536 size_t olength, accumulated_length; in cipher_decrypt() local
556 accumulated_length = olength; in cipher_decrypt()
558 status = cipher_finish( &operation, output + accumulated_length, in cipher_decrypt()
559 output_size - accumulated_length, &olength ); in cipher_decrypt()
563 *output_length = accumulated_length + olength; in cipher_decrypt()