Searched refs:output_copy (Results 1 – 3 of 3) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/library/ |
D | psa_crypto_invasive.h | 79 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len,
|
D | psa_crypto.c | 240 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument 246 output_copy = LOCAL_OUTPUT_COPY_OF_##output.buffer; 256 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument 257 output_copy = NULL; \ 277 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument 278 output_copy = output; 279 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument 280 output_copy = NULL; 9051 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len, in psa_crypto_copy_output() argument 9065 memcpy(output, output_copy, output_copy_len); in psa_crypto_copy_output()
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | psa-shared-memory.md | 521 * `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 `…
|