Lines Matching defs:input_copy
189 /* Allocate a copy of the buffer input and set the pointer input_copy to
196 * - LOCAL_INPUT_DECLARE(input, input_copy) has previously been called
198 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \
204 input_copy = LOCAL_INPUT_COPY_OF_##input.buffer;
209 * - input_copy is the name of the input copy pointer set by LOCAL_INPUT_ALLOC()
212 #define LOCAL_INPUT_FREE(input, input_copy) \
213 input_copy = NULL; \
271 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \
272 input_copy = input;
273 #define LOCAL_INPUT_FREE(input, input_copy) \
274 input_copy = NULL;
8999 * \param[out] input_copy Pointer to a local copy in which to store the input data.
9009 uint8_t *input_copy, size_t input_copy_len)
9022 memcpy(input_copy, input, input_len);