Lines Matching refs:input_length
290 size_t input_length, in psa_cipher_update_ecb() argument
299 if( input_length == 0 ) in psa_cipher_update_ecb()
310 if( input_length < bytes_to_copy ) in psa_cipher_update_ecb()
311 bytes_to_copy = input_length; in psa_cipher_update_ecb()
315 input_length -= bytes_to_copy; in psa_cipher_update_ecb()
336 while( input_length >= block_size ) in psa_cipher_update_ecb()
347 input_length -= block_size; in psa_cipher_update_ecb()
354 if( input_length > 0 ) in psa_cipher_update_ecb()
358 input, input_length ); in psa_cipher_update_ecb()
359 ctx->unprocessed_len += input_length; in psa_cipher_update_ecb()
370 size_t input_length, in cipher_update() argument
385 ( operation->ctx.cipher.unprocessed_len + input_length ) in cipher_update()
390 expected_output_size = input_length; in cipher_update()
403 input_length, in cipher_update()
411 input_length, output, output_length ) ); in cipher_update()
476 size_t input_length, in cipher_encrypt() argument
500 status = cipher_update( &operation, input, input_length, in cipher_encrypt()
529 size_t input_length, in cipher_decrypt() argument
551 input_length - operation.iv_length, in cipher_decrypt()
604 size_t input_length, in mbedtls_psa_cipher_update() argument
609 return( cipher_update( operation, input, input_length, in mbedtls_psa_cipher_update()
631 size_t input_length, in mbedtls_psa_cipher_encrypt() argument
637 alg, input, input_length, in mbedtls_psa_cipher_encrypt()
646 size_t input_length, in mbedtls_psa_cipher_decrypt() argument
652 alg, input, input_length, in mbedtls_psa_cipher_decrypt()
691 const uint8_t *input, size_t input_length, in mbedtls_transparent_test_driver_cipher_update() argument
694 return( cipher_update( operation, input, input_length, in mbedtls_transparent_test_driver_cipher_update()
717 size_t input_length, in mbedtls_transparent_test_driver_cipher_encrypt() argument
723 alg, input, input_length, in mbedtls_transparent_test_driver_cipher_encrypt()
733 size_t input_length, in mbedtls_transparent_test_driver_cipher_decrypt() argument
739 alg, input, input_length, in mbedtls_transparent_test_driver_cipher_decrypt()