Lines Matching defs:startIterator

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 );
3869 IteratorType startIterator,
3889 size_type size = sizeof(DataType)*(endIterator - startIterator);
3894 object_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error);
3905 error = cl::copy(startIterator, endIterator, *this);
3919 Buffer(const Context &context, IteratorType startIterator, IteratorType endIterator,
3927 Buffer(const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator,
9016 IteratorType startIterator,
9036 size_type size = sizeof(DataType)*(endIterator - startIterator);
9039 object_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error);
9056 error = cl::copy(queue, startIterator, endIterator, *this);
9067 IteratorType startIterator,
9087 size_type size = sizeof(DataType)*(endIterator - startIterator);
9092 object_ = ::clCreateBuffer(context(), flags, size, static_cast<DataType*>(&*startIterator), &error);
9104 error = cl::copy(queue, startIterator, endIterator, *this);
9376 inline cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
9383 return cl::copy(queue, startIterator, endIterator, buffer);
9392 inline cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
9399 return cl::copy(queue, buffer, startIterator, endIterator);
9408 inline cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer )
9413 size_type length = endIterator-startIterator;
9424 startIterator,
9429 std::copy(startIterator, endIterator, pointer);
9447 inline cl_int copy( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator )
9452 size_type length = endIterator-startIterator;
9461 std::copy(pointer, pointer + length, startIterator);