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,
399 #define __COPY_ERR __ERR_STR(cl::copy)
532 * \param size the number of characters to copy from str.
615 * \param rhs the string to copy.
652 * \param rhs the string to copy.
674 /*! \brief Returns a pointer to the private copy held by this instance,
707 * and assigned instead of being copy constructed.
780 * \param vec the vector to copy.
807 * \param rhs vector to copy.
943 * the vector by copy.
2088 /*! \brief Copy constructor to forward copy to the superclass correctly.
2093 /*! \brief Copy assignment to forward copy to the superclass correctly.
2489 * \note Copies of these objects are shallow, meaning that the copy will refer
2653 /*! \brief Copy constructor to forward copy to the superclass correctly.
2658 /*! \brief Copy assignment to forward copy to the superclass correctly.
2862 * \note Copies of these objects are shallow, meaning that the copy will refer
2986 * See Event for details about copy semantics, etc.
3041 * \note Copies of these objects are shallow, meaning that the copy will refer
3071 /*! \brief Copy constructor to forward copy to the superclass correctly.
3076 /*! \brief Copy assignment to forward copy to the superclass correctly.
3153 // Pre-declare copy functions
3156 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3158 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3160 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3162 cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3167 * See Memory for details about copy semantics, etc.
3268 error = cl::copy(startIterator, endIterator, *this);
3302 /*! \brief Assignment from cl_mem - performs shallow copy.
3312 /*! \brief Copy constructor to forward copy to the superclass correctly.
3317 /*! \brief Copy assignment to forward copy to the superclass correctly.
3377 * See Memory for details about copy semantics, etc.
3437 /*! \brief Assignment from cl_mem - performs shallow copy.
3447 /*! \brief Copy constructor to forward copy to the superclass correctly.
3452 /*! \brief Copy assignment to forward copy to the superclass correctly.
3483 * See Memory for details about copy semantics, etc.
3523 /*! \brief Assignment from cl_mem - performs shallow copy.
3533 /*! \brief Copy constructor to forward copy to the superclass correctly.
3538 /*! \brief Copy assignment to forward copy to the superclass correctly.
3576 * See Memory for details about copy semantics, etc.
3592 /*! \brief Assignment from cl_mem - performs shallow copy.
3602 /*! \brief Copy constructor to forward copy to the superclass correctly.
3607 /*! \brief Copy assignment to forward copy to the superclass correctly.
3660 * See Memory for details about copy semantics, etc.
3709 /*! \brief Assignment from cl_mem - performs shallow copy.
3719 /*! \brief Copy constructor to forward copy to the superclass correctly.
3724 /*! \brief Copy assignment to forward copy to the superclass correctly.
3796 /*! \brief Copy constructor to forward copy to the superclass correctly.
3801 /*! \brief Copy assignment to forward copy to the superclass correctly.
3877 /*! \brief Copy constructor to forward copy to the superclass correctly.
3882 /*! \brief Copy assignment to forward copy to the superclass correctly.
3912 * See Memory for details about copy semantics, etc.
3997 /*! \brief Assignment from cl_mem - performs shallow copy.
4007 /*! \brief Copy constructor to forward copy to the superclass correctly.
4012 /*! \brief Copy assignment to forward copy to the superclass correctly.
4044 * See Memory for details about copy semantics, etc.
4090 /*! \brief Assignment from cl_mem - performs shallow copy.
4100 /*! \brief Copy constructor to forward copy to the superclass correctly.
4105 /*! \brief Copy assignment to forward copy to the superclass correctly.
4187 /*! \brief Copy constructor to forward copy to the superclass correctly.
4192 /*! \brief Copy assignment to forward copy to the superclass correctly.
4221 * See Memory for details about copy semantics, etc.
4311 /*! \brief Assignment from cl_mem - performs shallow copy.
4321 /*! \brief Copy constructor to forward copy to the superclass correctly.
4326 /*! \brief Copy assignment to forward copy to the superclass correctly.
4357 * See Memory for details about copy semantics, etc.
4401 /*! \brief Assignment from cl_mem - performs shallow copy.
4411 /*! \brief Copy constructor to forward copy to the superclass correctly.
4416 /*! \brief Copy assignment to forward copy to the superclass correctly.
4486 /*! \brief Copy constructor to forward copy to the superclass correctly.
4491 /*! \brief Copy assignment to forward copy to the superclass correctly.
4522 * See Memory for details about copy semantics, etc.
4576 /*! \brief Assignment from cl_mem - performs shallow copy.
4591 /*! \brief Copy constructor to forward copy to the superclass correctly.
4600 /*! \brief Copy assignment to forward copy to the superclass correctly.
4652 * \note Copies of these objects are shallow, meaning that the copy will refer
4707 /*! \brief Copy constructor to forward copy to the superclass correctly.
4712 /*! \brief Copy assignment to forward copy to the superclass correctly.
4869 * \note Copies of these objects are shallow, meaning that the copy will refer
4901 /*! \brief Copy constructor to forward copy to the superclass correctly.
4906 /*! \brief Copy assignment to forward copy to the superclass correctly.
5236 /*! \brief Copy constructor to forward copy to the superclass correctly.
5241 /*! \brief Copy assignment to forward copy to the superclass correctly.
5593 /*! \brief Copy constructor to forward copy to the superclass correctly.
5598 /*! \brief Copy assignment to forward copy to the superclass correctly.
6668 error = cl::copy(queue, startIterator, endIterator, *this);
6716 error = cl::copy(queue, startIterator, endIterator, *this);
6841 * Blocking copy operation between iterators and a buffer.
6846 inline cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
6853 return cl::copy(queue, startIterator, endIterator, buffer);
6857 * Blocking copy operation between iterators and a buffer.
6862 inline cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
6869 return cl::copy(queue, buffer, startIterator, endIterator);
6873 * Blocking copy operation between iterators and a buffer.
6878 inline cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
6893 std::copy(
6899 std::copy(startIterator, endIterator, pointer);
6912 * Blocking copy operation between iterators and a buffer.
6917 inline cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
6931 std::copy(pointer, pointer + length, startIterator);