• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:endIterator

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 …mandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator );
3999 IteratorType endIterator, in Buffer() argument
4018 size_type size = sizeof(DataType)*(endIterator - startIterator); 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,
9169 IteratorType endIterator, in Buffer() argument
9188 size_type size = sizeof(DataType)*(endIterator - startIterator); in Buffer()
9208 error = cl::copy(queue, startIterator, endIterator, *this); in Buffer()
9220 IteratorType endIterator, in Buffer() argument
9239 size_type size = sizeof(DataType)*(endIterator - startIterator); 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()
9577 endIterator, in copy()
9581 std::copy(startIterator, endIterator, pointer); in copy()
9599 …mmandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ) in copy() argument
9604 size_type length = endIterator-startIterator; in copy()