Searched refs:CLEventCL (Results 1 – 6 of 6) sorted by relevance
/external/angle/src/libANGLE/renderer/cl/ |
D | CLEventCL.cpp | 15 CLEventCL::CLEventCL(const cl::Event &event, cl_event native) : CLEventImpl(event), mNative(native) in CLEventCL() function in rx::CLEventCL 18 CLEventCL::~CLEventCL() in ~CLEventCL() 26 cl_int CLEventCL::getCommandExecutionStatus(cl_int &executionStatus) in getCommandExecutionStatus() 33 cl_int CLEventCL::setUserEventStatus(cl_int executionStatus) in setUserEventStatus() 38 cl_int CLEventCL::setCallback(cl::Event &event, cl_int commandExecCallbackType) in setCallback() 44 cl_int CLEventCL::getProfilingInfo(cl::ProfilingInfo name, in getProfilingInfo() 53 std::vector<cl_event> CLEventCL::Cast(const cl::EventPtrs &events) in Cast() 59 nativeEvents.emplace_back(event->getImpl<CLEventCL>().getNative()); in Cast() 64 void CLEventCL::Callback(cl_event event, cl_int commandStatus, void *userData) in Callback()
|
D | CLEventCL.h | 18 class CLEventCL : public CLEventImpl 21 CLEventCL(const cl::Event &event, cl_event native); 22 ~CLEventCL() override; 45 inline cl_event CLEventCL::getNative() const in getNative()
|
D | CLCommandQueueCL.cpp | 33 return CLEventImpl::Ptr(new CLEventCL(event, nativeEvent)); in CheckCreateEvent() 82 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueReadBuffer() 106 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueWriteBuffer() 135 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueReadBufferRect() 165 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueWriteBufferRect() 190 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueCopyBuffer() 218 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueCopyBufferRect() 241 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueFillBuffer() 266 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueMapBuffer() 292 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(waitEvents); in enqueueReadImage() [all …]
|
D | BUILD.gn | 18 "CLEventCL.cpp", 19 "CLEventCL.h",
|
D | cl_types.h | 19 class CLEventCL; variable
|
D | CLContextCL.cpp | 344 return CLEventImpl::Ptr(nativeEvent != nullptr ? new CLEventCL(event, nativeEvent) : nullptr); in createUserEvent() 349 const std::vector<cl_event> nativeEvents = CLEventCL::Cast(events); in waitForEvents()
|