Lines Matching defs:output_copy
231 /* Allocate a copy of the buffer output and set the pointer output_copy to
238 * - LOCAL_OUTPUT_DECLARE(output, output_copy) has previously been called
240 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \
246 output_copy = LOCAL_OUTPUT_COPY_OF_##output.buffer;
253 * - output_copy is the name of the output copy pointer set by LOCAL_OUTPUT_ALLOC()
256 #define LOCAL_OUTPUT_FREE(output, output_copy) \
257 output_copy = NULL; \
277 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \
278 output_copy = output;
279 #define LOCAL_OUTPUT_FREE(output, output_copy) \
280 output_copy = NULL;
9036 * \param[in] output_copy Pointer to a local buffer containing the output.
9047 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len,
9061 memcpy(output, output_copy, output_copy_len);