Home
last modified time | relevance | path

Searched refs:cmdQueue (Results 1 – 17 of 17) sorted by relevance

/external/oj-libjdwp/src/share/back/
DdebugLoop.c52 static volatile struct PacketList *cmdQueue; variable
95 cmdQueue = NULL; in debugLoop_run()
293 if (cmdQueue == NULL) { in enqueue()
294 cmdQueue = pL; in enqueue()
297 walker = (struct PacketList *)cmdQueue; in enqueue()
313 while (!transportError && (cmdQueue == NULL)) { in dequeue()
317 if (cmdQueue != NULL) { in dequeue()
318 node = (struct PacketList *)cmdQueue; in dequeue()
319 cmdQueue = node->next; in dequeue()
/external/OpenCL-CTS/test_conformance/extensions/cl_khr_dx9_media_sharing/
Dtest_functions_api.cpp150 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in api_functions() local
177 cmdQueue, static_cast<cl_uint>(memObjList.size()), in api_functions()
198 error = clEnqueueReadImage(cmdQueue, memObjList[i], CL_TRUE, in api_functions()
232 cmdQueue, memObjList[i], CL_TRUE, origin, regionPlane, in api_functions()
257 error = clEnqueueReadImage(cmdQueue, memObjList[i], CL_TRUE, in api_functions()
312 error = clEnqueueCopyImage(cmdQueue, memObjList[i], in api_functions()
322 error = clEnqueueReadImage(cmdQueue, planeOCL, CL_TRUE, in api_functions()
384 error = clEnqueueCopyImage(cmdQueue, planeOCL, in api_functions()
394 error = clEnqueueReadImage(cmdQueue, memObjList[i], CL_TRUE, in api_functions()
439 cmdQueue, memObjList[i], buffer, origin, regionPlane, in api_functions()
[all …]
Dtest_memory_access.cpp114 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in memory_access() local
155 cmdQueue, static_cast<cl_uint>(memObjList.size()), in memory_access()
173 error = clEnqueueWriteImage(cmdQueue, memObjList[i], CL_TRUE, in memory_access()
187 cmdQueue, static_cast<cl_uint>(memObjList.size()), in memory_access()
241 cmdQueue, static_cast<cl_uint>(memObjList.size()), in memory_access()
261 error = clEnqueueReadImage(cmdQueue, memObjList[i], CL_TRUE, in memory_access()
281 cmdQueue, static_cast<cl_uint>(memObjList.size()), in memory_access()
335 cmdQueue, static_cast<cl_uint>(memObjList.size()), in memory_access()
356 error = clEnqueueReadImage(cmdQueue, memObjList[i], CL_TRUE, in memory_access()
387 cmdQueue, memObjList[i], CL_TRUE, origin, regionPlane, in memory_access()
[all …]
Dtest_functions_kernel.cpp199 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in kernel_functions() local
226 cmdQueue, static_cast<cl_uint>(memObjSrcList.size()), in kernel_functions()
237 cmdQueue, static_cast<cl_uint>(memObjDstList.size()), in kernel_functions()
323 clEnqueueNDRangeKernel(cmdQueue, kernel, 2, NULL, threads, in kernel_functions()
332 error = clEnqueueReadBuffer(cmdQueue, imageRes, CL_TRUE, 0, in kernel_functions()
356 error = clEnqueueReadImage(cmdQueue, memObjDstList[i], CL_TRUE, in kernel_functions()
379 cmdQueue, static_cast<cl_uint>(memObjSrcList.size()), in kernel_functions()
389 cmdQueue, static_cast<cl_uint>(memObjDstList.size()), in kernel_functions()
Dtest_interop_sync.cpp162 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in interop_user_sync() local
235 cmdQueue, static_cast<cl_uint>(memObjList.size()), in interop_user_sync()
256 clEnqueueReadImage(cmdQueue, memObjList.at(i), CL_TRUE, origin, in interop_user_sync()
275 cmdQueue, static_cast<cl_uint>(memObjList.size()), in interop_user_sync()
286 error = clFinish(cmdQueue); in interop_user_sync()
Dtest_create_context.cpp155 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in context_create() local
174 cmdQueue, static_cast<cl_uint>(memObjList.size()), in context_create()
213 clEnqueueReadImage(cmdQueue, memObjList.at(i), CL_TRUE, origin, in context_create()
232 cmdQueue, static_cast<cl_uint>(memObjList.size()), in context_create()
Dtest_other_data_types.cpp96 clCommandQueueWrapper cmdQueue = clCreateCommandQueueWithProperties( in other_data_types() local
138 if (DetectFloatToHalfRoundingMode(cmdQueue)) in other_data_types()
273 cmdQueue, static_cast<cl_uint>(memObjList.size()), in other_data_types()
289 clEnqueueReadImage(cmdQueue, objectSrcShared, CL_TRUE, in other_data_types()
311 cmdQueue, objectSrcShared, CL_TRUE, origin, region, 0, 0, in other_data_types()
384 clEnqueueNDRangeKernel(cmdQueue, kernel, 2, NULL, threads, in other_data_types()
393 error = clEnqueueReadBuffer(cmdQueue, imageRes, CL_TRUE, 0, in other_data_types()
426 cmdQueue, objectDstShared, CL_TRUE, in other_data_types()
457 error = clEnqueueUnmapMemObject(cmdQueue, objectDstShared, in other_data_types()
468 cmdQueue, static_cast<cl_uint>(memObjList.size()), in other_data_types()
/external/angle/src/libANGLE/renderer/metal/
Dmtl_resources.mm83 return context->cmdQueue().isResourceBeingUsedByGPU(this);
88 return context->cmdQueue().resourceHasPendingWorks(this);
552 CommandQueue &cmdQueue = context->cmdQueue();
562 cmdQueue.ensureResourceReadyForCPU(this);
587 CommandQueue &cmdQueue = context->cmdQueue();
597 cmdQueue.ensureResourceReadyForCPU(this);
1002 CommandQueue &cmdQueue = context->cmdQueue();
1011 cmdQueue.ensureResourceReadyForCPU(this);
Dmtl_common.mm90 mtl::CommandQueue &Context::cmdQueue()
92 return mDisplay->cmdQueue();
Dmtl_command_buffer.h97 CommandBuffer(CommandQueue *cmdQueue);
123 CommandQueue &cmdQueue() { return mCmdQueue; } in cmdQueue() function
193 CommandQueue &cmdQueue() { return mCmdBuffer.cmdQueue(); } in cmdQueue() function
DDisplayMtl.h133 mtl::CommandQueue &cmdQueue() { return mCmdQueue; } in cmdQueue() function
Dmtl_buffer_pool.mm152 contextMtl->cmdQueue().ensureResourceReadyForCPU(mBufferFreeList.front());
Dmtl_common.h521 mtl::CommandQueue &cmdQueue(); in ANGLE_GL_OBJECTS_X()
DSurfaceMtl.mm420 StartFrameCapture(metalDevice, displayMtl->cmdQueue().get());
Dmtl_command_buffer.mm570 CommandBuffer::CommandBuffer(CommandQueue *cmdQueue) : mCmdQueue(*cmdQueue) {}
Dmtl_utils.mm170 StartFrameCapture(context->getMetalDevice(), context->cmdQueue().get());
DContextMtl.mm191 mCmdBuffer(&display->cmdQueue()),