Lines Matching defs:Pipe
341 cl::Pipe aPipe(sizeof(cl_int), numElements / 2);
354 cl::Pipe&,
740 class Pipe;
5412 /*! \brief Class interface for Pipe Memory Objects.
5418 class Pipe : public Memory
5422 /*! \brief Constructs a Pipe in a specified context.
5431 Pipe(
5448 /*! \brief Constructs a Pipe in a the default context.
5456 Pipe(
5475 Pipe() : Memory() { }
5484 explicit Pipe(const cl_mem& pipe, bool retainObject = false) :
5491 Pipe& operator = (const cl_mem& rhs)
5500 Pipe(const Pipe& pipe) : Memory(pipe) {}
5505 Pipe& operator = (const Pipe &pipe)
5514 Pipe(Pipe&& pipe) CL_HPP_NOEXCEPT_ : Memory(std::move(pipe)) {}
5519 Pipe& operator = (Pipe &&pipe)
5547 }; // class Pipe