Lines Matching refs:startIterator

3562 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer );
3564 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3566 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::B…
3568 cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, Itera…
3998 IteratorType startIterator, in Buffer() argument
4018 size_type size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
4023 …object_ = ::clCreateBuffer(context(), flags, size, const_cast<DataType*>(&*startIterator), &error); in Buffer()
4034 error = cl::copy(startIterator, endIterator, *this); in Buffer()
4048 Buffer(const Context &context, IteratorType startIterator, IteratorType endIterator,
4056 Buffer(const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator,
9168 IteratorType startIterator, in Buffer() argument
9188 size_type size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
9191 …object_ = ::clCreateBuffer(context(), flags, size, const_cast<DataType*>(&*startIterator), &error); in Buffer()
9208 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
9219 IteratorType startIterator, in Buffer() argument
9239 size_type size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
9244 …object_ = ::clCreateBuffer(context(), flags, size, const_cast<DataType*>(&*startIterator), &error); in Buffer()
9256 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
9528 inline cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer ) in copy() argument
9535 return cl::copy(queue, startIterator, endIterator, buffer); in copy()
9544 inline cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ) in copy() argument
9551 return cl::copy(queue, buffer, startIterator, endIterator); in copy()
9560 inline cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator… in copy() argument
9565 size_type length = endIterator-startIterator; in copy()
9576 startIterator, in copy()
9581 std::copy(startIterator, endIterator, pointer); in copy()
9599 inline cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator in copy() argument
9604 size_type length = endIterator-startIterator; in copy()
9613 std::copy(pointer, pointer + length, startIterator); in copy()