Lines Matching refs:hev
196 auto hev = create<hard_event>(q, CL_COMMAND_MARKER, deps); in clEnqueueMarkerWithWaitList() local
198 ret_object(rd_ev, hev); in clEnqueueMarkerWithWaitList()
231 auto hev = create<hard_event>(q, CL_COMMAND_BARRIER, deps); in clEnqueueBarrierWithWaitList() local
233 ret_object(rd_ev, hev); in clEnqueueBarrierWithWaitList()
256 hard_event &hev = dynamic_cast<hard_event &>(obj(d_ev)); in clGetEventProfilingInfo() local
258 if (hev.status() != CL_COMPLETE) in clGetEventProfilingInfo()
263 buf.as_scalar<cl_ulong>() = hev.time_queued(); in clGetEventProfilingInfo()
267 buf.as_scalar<cl_ulong>() = hev.time_submit(); in clGetEventProfilingInfo()
271 buf.as_scalar<cl_ulong>() = hev.time_start(); in clGetEventProfilingInfo()
276 buf.as_scalar<cl_ulong>() = hev.time_end(); in clGetEventProfilingInfo()
301 auto hev = create<hard_event>(q, 0, ref_vector<event> {}); in clFinish() local
304 hev().wait(); in clFinish()