Lines Matching refs:endIterator
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 …mandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3228 IteratorType endIterator, in Buffer() argument
3247 ::size_t size = sizeof(DataType)*(endIterator - startIterator); 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,
6624 IteratorType endIterator, in Buffer() argument
6643 ::size_t size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
6663 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
6675 IteratorType endIterator, in Buffer() argument
6694 ::size_t size = sizeof(DataType)*(endIterator - startIterator); 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()
6890 endIterator, in copy()
6894 std::copy(startIterator, endIterator, pointer); in copy()
6912 …mmandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ) in copy() argument
6917 ::size_t length = endIterator-startIterator; in copy()