Lines Matching refs:startIterator
3151 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3153 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3155 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::B…
3157 cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, Itera…
3227 IteratorType startIterator, in Buffer() argument
3247 ::size_t size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
3252 …bject_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error); in Buffer()
3263 error = cl::copy(startIterator, endIterator, *this); in Buffer()
3277 Buffer(const Context &context, IteratorType startIterator, IteratorType endIterator,
3285 Buffer(const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator,
6623 IteratorType startIterator, in Buffer() argument
6643 ::size_t size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
6646 …object_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error… in Buffer()
6663 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
6674 IteratorType startIterator, in Buffer() argument
6694 ::size_t size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
6699 …object_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error… in Buffer()
6711 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
6841 inline cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer ) in copy() argument
6848 return cl::copy(queue, startIterator, endIterator, buffer); in copy()
6857 inline cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ) in copy() argument
6864 return cl::copy(queue, buffer, startIterator, endIterator); in copy()
6873 inline cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator… in copy() argument
6878 ::size_t length = endIterator-startIterator; in copy()
6889 startIterator, in copy()
6894 std::copy(startIterator, endIterator, pointer); in copy()
6912 inline cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator… in copy() argument
6917 ::size_t length = endIterator-startIterator; in copy()
6926 std::copy(pointer, pointer + length, startIterator); in copy()