Searched refs:CLEventImpl (Results 1 – 17 of 17) sorted by relevance
/external/angle/src/libANGLE/renderer/ |
D | CLCommandQueueImpl.h | 32 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 40 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 53 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 66 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 74 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 86 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 94 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 102 CLEventImpl::CreateFunc *eventCreateFunc, 113 CLEventImpl::CreateFunc *eventCreateFunc) = 0; 123 CLEventImpl::CreateFunc *eventCreateFunc) = 0; [all …]
|
D | CLEventImpl.cpp | 13 CLEventImpl::CLEventImpl(const cl::Event &event) : mEvent(event) {} in CLEventImpl() function in rx::CLEventImpl 15 CLEventImpl::~CLEventImpl() = default;
|
D | CLEventImpl.h | 16 class CLEventImpl : angle::NonCopyable 19 using Ptr = std::unique_ptr<CLEventImpl>; 22 CLEventImpl(const cl::Event &event); 23 virtual ~CLEventImpl();
|
D | CLtypes.h | 19 class CLEventImpl; variable
|
D | CLContextImpl.h | 79 virtual CLEventImpl::Ptr createUserEvent(const cl::Event &event, cl_int &errorCode) = 0;
|
/external/angle/src/libANGLE/renderer/cl/ |
D | CLCommandQueueCL.h | 33 CLEventImpl::CreateFunc *eventCreateFunc) override; 41 CLEventImpl::CreateFunc *eventCreateFunc) override; 54 CLEventImpl::CreateFunc *eventCreateFunc) override; 67 CLEventImpl::CreateFunc *eventCreateFunc) override; 75 CLEventImpl::CreateFunc *eventCreateFunc) override; 87 CLEventImpl::CreateFunc *eventCreateFunc) override; 95 CLEventImpl::CreateFunc *eventCreateFunc) override; 103 CLEventImpl::CreateFunc *eventCreateFunc, 114 CLEventImpl::CreateFunc *eventCreateFunc) override; 124 CLEventImpl::CreateFunc *eventCreateFunc) override; [all …]
|
D | CLCommandQueueCL.cpp | 28 void CheckCreateEvent(cl_int errorCode, cl_event nativeEvent, CLEventImpl::CreateFunc *createFunc) in CheckCreateEvent() 33 return CLEventImpl::Ptr(new CLEventCL(event, nativeEvent)); in CheckCreateEvent() 78 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueReadBuffer() 102 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueWriteBuffer() 131 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueReadBufferRect() 161 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueWriteBufferRect() 186 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueCopyBuffer() 214 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueCopyBufferRect() 238 CLEventImpl::CreateFunc *eventCreateFunc) in enqueueFillBuffer() 261 CLEventImpl::CreateFunc *eventCreateFunc, in enqueueMapBuffer() [all …]
|
D | CLEventCL.h | 18 class CLEventCL : public CLEventImpl
|
D | CLEventCL.cpp | 15 CLEventCL::CLEventCL(const cl::Event &event, cl_event native) : CLEventImpl(event), mNative(native) in CLEventCL()
|
D | CLContextCL.h | 84 CLEventImpl::Ptr createUserEvent(const cl::Event &event, cl_int &errorCode) override;
|
D | CLContextCL.cpp | 341 CLEventImpl::Ptr CLContextCL::createUserEvent(const cl::Event &event, cl_int &errorCode) in createUserEvent() 344 return CLEventImpl::Ptr(nativeEvent != nullptr ? new CLEventCL(event, nativeEvent) : nullptr); in createUserEvent()
|
/external/angle/src/libANGLE/ |
D | CLCommandQueue.cpp | 28 const rx::CLEventImpl::CreateFunc &createFunc, in CheckCreateEvent() 146 rx::CLEventImpl::CreateFunc eventCreateFunc; in enqueueReadBuffer() 147 rx::CLEventImpl::CreateFunc *const eventCreateFuncPtr = in enqueueReadBuffer() 169 rx::CLEventImpl::CreateFunc eventCreateFunc; in enqueueWriteBuffer() 170 rx::CLEventImpl::CreateFunc *const eventCreateFuncPtr = in enqueueWriteBuffer() 197 rx::CLEventImpl::CreateFunc eventCreateFunc; in enqueueReadBufferRect() 198 rx::CLEventImpl::CreateFunc *const eventCreateFuncPtr = in enqueueReadBufferRect() 226 rx::CLEventImpl::CreateFunc eventCreateFunc; in enqueueWriteBufferRect() 227 rx::CLEventImpl::CreateFunc *const eventCreateFuncPtr = in enqueueWriteBufferRect() 250 rx::CLEventImpl::CreateFunc eventCreateFunc; in enqueueCopyBuffer() [all …]
|
D | CLEvent.h | 47 template <typename T = rx::CLEventImpl> 62 const rx::CLEventImpl::CreateFunc &createFunc, 68 const rx::CLEventImpl::Ptr mImpl;
|
D | CLEvent.cpp | 150 const rx::CLEventImpl::CreateFunc &createFunc, in Event()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | CLEventVk.cpp | 13 CLEventVk::CLEventVk(const cl::Event &event) : CLEventImpl(event) {} in CLEventVk()
|
D | CLEventVk.h | 18 class CLEventVk : public CLEventImpl
|
/external/angle/src/ |
D | libGLESv2.gni | 477 "src/libANGLE/renderer/CLEventImpl.h", 506 "src/libANGLE/renderer/CLEventImpl.cpp",
|