Home
last modified time | relevance | path

Searched refs:output_copy (Results 1 – 3 of 3) sorted by relevance

/mbedtls-latest/library/
Dpsa_crypto_invasive.h79 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len,
Dpsa_crypto.c244 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument
250 output_copy = LOCAL_OUTPUT_COPY_OF_##output.buffer;
260 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument
261 output_copy = NULL; \
281 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument
282 output_copy = output;
283 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument
284 output_copy = NULL;
9144 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len, argument
9158 memcpy(output, output_copy, output_copy_len);
/mbedtls-latest/docs/architecture/
Dpsa-shared-memory.md521 * `psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_length, uint8_t *output, s…
581 * `LOCAL_OUTPUT_ALLOC(output, output_size, output_copy)`, analogous to `LOCAL_INPUT_ALLOC()` for ou…
582 * `LOCAL_OUTPUT_FREE(output, output_copy)`, analogous to `LOCAL_INPUT_FREE()` for outputs. If the `…