Lines Matching defs:pipe
272 global int *output, int val, write_only pipe int outPipe, queue_t childQueue)
5425 * @param context Context in which to create the pipe.
5427 * @param packet_size Size in bytes of a single packet of the pipe.
5428 * @param max_packets Number of packets that may be stored in the pipe.
5452 * @param packet_size Size in bytes of a single packet of the pipe.
5453 * @param max_packets Number of packets that may be stored in the pipe.
5484 explicit Pipe(const cl_mem& pipe, bool retainObject = false) :
5485 Memory(pipe, retainObject) { }
5500 Pipe(const Pipe& pipe) : Memory(pipe) {}
5505 Pipe& operator = (const Pipe &pipe)
5507 Memory::operator=(pipe);
5514 Pipe(Pipe&& pipe) CL_HPP_NOEXCEPT_ : Memory(std::move(pipe)) {}
5519 Pipe& operator = (Pipe &&pipe)
5521 Memory::operator=(std::move(pipe));