Home | History | Annotate | Download | only in src

Lines Matching refs:Impl

258 /// Stream::Impl
262 class cv::cuda::Stream::Impl
265 Impl(void* ptr = 0)
279 class cv::cuda::Stream::Impl
285 Impl();
286 Impl(cudaStream_t stream);
288 ~Impl();
291 cv::cuda::Stream::Impl::Impl() : stream(0)
298 cv::cuda::Stream::Impl::Impl(cudaStream_t stream_) : stream(stream_)
303 cv::cuda::Stream::Impl::~Impl()
374 Ptr<Stream::Impl> impl = makePtr<Stream::Impl>(stream);
375 streams_[deviceId] = Ptr<Stream>(new Stream(impl));
411 impl_ = makePtr<Impl>();
681 class cv::cuda::Event::Impl
684 Impl(unsigned int)
692 class cv::cuda::Event::Impl
697 Impl(unsigned int flags);
698 ~Impl();
701 cv::cuda::Event::Impl::Impl(unsigned int flags) : event(0)
706 cv::cuda::Event::Impl::~Impl()
725 impl_ = makePtr<Impl>(flags);