Lines Matching defs:copy
5 * copy of this software and/or associated documentation files (the
7 * without limitation the rights to use, copy, modify, merge, publish,
383 cl::copy(outputBuffer, begin(output), end(output));
845 #define __COPY_ERR CL_HPP_ERR_STR_(cl::copy)
1133 // Bound the copy with N to prevent overruns
2152 /*! \brief Copy constructor to forward copy to the superclass correctly.
2157 /*! \brief Copy assignment to forward copy to the superclass correctly.
2720 * \note Copies of these objects are shallow, meaning that the copy will refer
2942 /*! \brief Copy constructor to forward copy to the superclass correctly.
2947 /*! \brief Copy assignment to forward copy to the superclass correctly.
3129 * \note Copies of these objects are shallow, meaning that the copy will refer
3257 * See Event for details about copy semantics, etc.
3312 * \note Copies of these objects are shallow, meaning that the copy will refer
3349 /*! \brief Copy constructor to forward copy to the superclass correctly.
3354 /*! \brief Copy assignment to forward copy to the superclass correctly.
3430 // Pre-declare copy functions
3433 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3435 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3437 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3439 cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3804 * See Memory for details about copy semantics, etc.
3905 error = cl::copy(startIterator, endIterator, *this);
3943 /*! \brief Assignment from cl_mem - performs shallow copy.
3953 /*! \brief Copy constructor to forward copy to the superclass correctly.
3958 /*! \brief Copy assignment to forward copy to the superclass correctly.
4016 * See Memory for details about copy semantics, etc.
4079 /*! \brief Assignment from cl_mem - performs shallow copy.
4089 /*! \brief Copy constructor to forward copy to the superclass correctly.
4095 /*! \brief Copy assignment to forward copy to the superclass correctly.
4124 * See Memory for details about copy semantics, etc.
4168 /*! \brief Assignment from cl_mem - performs shallow copy.
4178 /*! \brief Copy constructor to forward copy to the superclass correctly.
4183 /*! \brief Copy assignment to forward copy to the superclass correctly.
4221 * See Memory for details about copy semantics, etc.
4265 /*! \brief Assignment from cl_mem - performs shallow copy.
4275 /*! \brief Copy constructor to forward copy to the superclass correctly.
4280 /*! \brief Copy assignment to forward copy to the superclass correctly.
4316 * See Memory for details about copy semantics, etc.
4336 /*! \brief Assignment from cl_mem - performs shallow copy.
4346 /*! \brief Copy constructor to forward copy to the superclass correctly.
4351 /*! \brief Copy assignment to forward copy to the superclass correctly.
4403 * See Memory for details about copy semantics, etc.
4456 /*! \brief Assignment from cl_mem - performs shallow copy.
4466 /*! \brief Copy constructor to forward copy to the superclass correctly.
4471 /*! \brief Copy assignment to forward copy to the superclass correctly.
4550 /*! \brief Copy constructor to forward copy to the superclass correctly.
4555 /*! \brief Copy assignment to forward copy to the superclass correctly.
4639 /*! \brief Copy constructor to forward copy to the superclass correctly.
4644 /*! \brief Copy assignment to forward copy to the superclass correctly.
4673 * See Memory for details about copy semantics, etc.
4871 /*! \brief Assignment from cl_mem - performs shallow copy.
4881 /*! \brief Copy constructor to forward copy to the superclass correctly.
4886 /*! \brief Copy assignment to forward copy to the superclass correctly.
4917 * See Memory for details about copy semantics, etc.
4967 /*! \brief Assignment from cl_mem - performs shallow copy.
4977 /*! \brief Copy constructor to forward copy to the superclass correctly.
4982 /*! \brief Copy assignment to forward copy to the superclass correctly.
5070 /*! \brief Copy constructor to forward copy to the superclass correctly.
5075 /*! \brief Copy assignment to forward copy to the superclass correctly.
5102 * See Memory for details about copy semantics, etc.
5196 /*! \brief Assignment from cl_mem - performs shallow copy.
5206 /*! \brief Copy constructor to forward copy to the superclass correctly.
5211 /*! \brief Copy assignment to forward copy to the superclass correctly.
5240 * See Memory for details about copy semantics, etc.
5288 /*! \brief Assignment from cl_mem - performs shallow copy.
5298 /*! \brief Copy constructor to forward copy to the superclass correctly.
5303 /*! \brief Copy assignment to forward copy to the superclass correctly.
5379 /*! \brief Copy constructor to forward copy to the superclass correctly.
5384 /*! \brief Copy assignment to forward copy to the superclass correctly.
5414 * See Memory for details about copy semantics, etc.
5487 /*! \brief Assignment from cl_mem - performs shallow copy.
5497 /*! \brief Copy constructor to forward copy to the superclass correctly.
5502 /*! \brief Copy assignment to forward copy to the superclass correctly.
5553 * \note Copies of these objects are shallow, meaning that the copy will refer
5630 /*! \brief Copy constructor to forward copy to the superclass correctly.
5635 /*! \brief Copy assignment to forward copy to the superclass correctly.
5819 * \note Copies of these objects are shallow, meaning that the copy will refer
5855 /*! \brief Copy constructor to forward copy to the superclass correctly.
5860 /*! \brief Copy assignment to forward copy to the superclass correctly.
6139 * Make a deep copy of the kernel object including its arguments.
6554 /*! \brief Copy constructor to forward copy to the superclass correctly.
6559 /*! \brief Copy assignment to forward copy to the superclass correctly.
7450 /*! \brief Copy constructor to forward copy to the superclass correctly.
7455 /*! \brief Copy assignment to forward copy to the superclass correctly.
8830 /*! \brief Copy constructor to forward copy to the superclass correctly.
8835 /*! \brief Copy assignment to forward copy to the superclass correctly.
9056 error = cl::copy(queue, startIterator, endIterator, *this);
9104 error = cl::copy(queue, startIterator, endIterator, *this);
9371 * Blocking copy operation between iterators and a buffer.
9376 inline cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
9383 return cl::copy(queue, startIterator, endIterator, buffer);
9387 * Blocking copy operation between iterators and a buffer.
9392 inline cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
9399 return cl::copy(queue, buffer, startIterator, endIterator);
9403 * Blocking copy operation between iterators and a buffer.
9408 inline cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
9423 std::copy(
9429 std::copy(startIterator, endIterator, pointer);
9442 * Blocking copy operation between iterators and a buffer.
9447 inline cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
9461 std::copy(pointer, pointer + length, startIterator);