/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesQueueBindSparseTests.cpp | 208 deUint32 numSemaphores = m_params.numWaitSemaphores; in iterate() local 210 while (numSemaphores > 0u && numQueues > 0u) in iterate() 216 sparseQueue, 0u, DE_NULL, DE_NULL, numSemaphores, getDataOrNullptr(waitSemaphores))); in iterate() 217 numSemaphores = 0u; in iterate() 223 …es[numQueues - 2], 0u, DE_NULL, DE_NULL, 1u, getDataOrNullptr(waitSemaphores, numSemaphores - 1))); in iterate() 225 --numSemaphores; in iterate() 246 deUint32 numSemaphores = m_params.numSignalSemaphores; in iterate() local 248 while (numSemaphores > 0u && numQueues > 0u) in iterate() 253 …sparseQueue, numSemaphores, getDataOrNullptr(signalSemaphores), getDataOrNullptr(signalSemaphoresW… in iterate() 254 numSemaphores = 0u; in iterate() [all …]
|
/external/skia/src/image/ |
D | SkSurface.cpp | 252 int numSemaphores, GrBackendSemaphore signalSemaphores[], in flush() argument 255 return asSB(this)->onFlush(access, flags, numSemaphores, signalSemaphores, finishedProc, in flush() 260 int numSemaphores, GrBackendSemaphore signalSemaphores[]) { in flush() argument 262 return this->flush(access, grFlags, numSemaphores, signalSemaphores); in flush() 265 GrSemaphoresSubmitted SkSurface::flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument 268 numSemaphores, signalSemaphores, nullptr, nullptr); in flushAndSignalSemaphores() 271 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in wait() argument 272 return asSB(this)->onWait(numSemaphores, waitSemaphores); in wait()
|
D | SkSurface_Gpu.h | 36 int numSemaphores, 40 bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) override;
|
D | SkSurface_Base.h | 84 int numSemaphores, in onFlush() argument 96 virtual bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
|
D | SkSurface_Gpu.cpp | 162 int numSemaphores, in onFlush() argument 166 return fDevice->flush(access, flags, numSemaphores, signalSemaphores, finishedProc, in onFlush() 170 bool SkSurface_Gpu::onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument 171 return fDevice->wait(numSemaphores, waitSemaphores); in onWait()
|
/external/skia/include/gpu/ |
D | GrContext.h | 253 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores); 286 GrSemaphoresSubmitted flush(GrFlushFlags flags, int numSemaphores, 294 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument 296 return this->flush(kNone_GrFlushFlags, numSemaphores, signalSemaphores); in flushAndSignalSemaphores()
|
/external/skia/include/core/ |
D | SkSurface.h | 773 int numSemaphores, GrBackendSemaphore signalSemaphores[], 785 int numSemaphores, GrBackendSemaphore signalSemaphores[]); 789 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, 802 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
|
/external/skia/src/gpu/ |
D | GrContext.cpp | 235 bool GrContext::wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]) { in wait() argument 239 for (int i = 0; i < numSemaphores; ++i) { in wait() 259 GrSemaphoresSubmitted GrContext::flush(GrFlushFlags flags, int numSemaphores, in flush() argument 269 flags, numSemaphores, signalSemaphores, finishedProc, in flush()
|
D | GrDrawingManager.h | 78 int numSemaphores, 157 int numSemaphores,
|
D | GrDrawingManager.cpp | 202 int numSemaphores, in flush() argument 348 GrSemaphoresSubmitted result = gpu->finishFlush(proxy, access, flags, numSemaphores, in flush() 479 int numSemaphores, GrBackendSemaphore backendSemaphores[], in prepareSurfaceForExternalIO() argument 501 if (proxy->priv().hasPendingIO() || numSemaphores || finishedProc || in prepareSurfaceForExternalIO() 503 result = this->flush(proxy, access, flags, numSemaphores, backendSemaphores, in prepareSurfaceForExternalIO()
|
D | SkGpuDevice.h | 123 int numSemaphores, 127 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
|
D | GrGpu.cpp | 401 GrFlushFlags flags, int numSemaphores, in finishFlush() argument 409 for (int i = 0; i < numSemaphores; ++i) { in finishFlush() 426 (numSemaphores > 0 && this->caps()->fenceSyncSupport()), in finishFlush()
|
/external/skqp/src/image/ |
D | SkSurface_Gpu.h | 35 GrSemaphoresSubmitted onFlush(int numSemaphores, 37 bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) override;
|
D | SkSurface.cpp | 250 GrSemaphoresSubmitted SkSurface::flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument 252 return asSB(this)->onFlush(numSemaphores, signalSemaphores); in flushAndSignalSemaphores() 255 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in wait() argument 256 return asSB(this)->onWait(numSemaphores, waitSemaphores); in wait()
|
D | SkSurface_Base.h | 83 virtual GrSemaphoresSubmitted onFlush(int numSemaphores, in onFlush() argument 93 virtual bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
|
D | SkSurface_Gpu.cpp | 156 GrSemaphoresSubmitted SkSurface_Gpu::onFlush(int numSemaphores, in onFlush() argument 158 return fDevice->flushAndSignalSemaphores(numSemaphores, signalSemaphores); in onFlush() 161 bool SkSurface_Gpu::onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument 162 return fDevice->wait(numSemaphores, waitSemaphores); in onWait()
|
/external/skqp/src/gpu/vk/ |
D | GrVkSecondaryCBDrawContext.cpp | 64 bool GrVkSecondaryCBDrawContext::wait(int numSemaphores, in wait() argument 66 return fDevice->wait(numSemaphores, waitSemaphores); in wait()
|
D | GrVkSecondaryCBDrawContext.h | 84 bool wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]);
|
/external/skqp/src/gpu/ |
D | GrDrawingManager.cpp | 209 int numSemaphores, in flush() argument 335 GrSemaphoresSubmitted result = gpu->finishFlush(numSemaphores, backendSemaphores); in flush() 451 GrSurfaceProxy* proxy, int numSemaphores, GrBackendSemaphore backendSemaphores[]) { in prepareSurfaceForExternalIO() argument 464 if (proxy->priv().hasPendingIO() || numSemaphores) { in prepareSurfaceForExternalIO() 465 result = this->flush(proxy, numSemaphores, backendSemaphores); in prepareSurfaceForExternalIO()
|
D | GrDrawingManager.h | 76 int numSemaphores, 146 int numSemaphores = 0,
|
D | GrGpu.cpp | 378 GrSemaphoresSubmitted GrGpu::finishFlush(int numSemaphores, in finishFlush() argument 384 for (int i = 0; i < numSemaphores; ++i) { in finishFlush() 400 this->onFinishFlush((numSemaphores > 0 && this->caps()->fenceSyncSupport())); in finishFlush()
|
D | SkGpuDevice.h | 123 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, 125 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
|
/external/skia/src/gpu/vk/ |
D | GrVkSecondaryCBDrawContext.cpp | 70 bool GrVkSecondaryCBDrawContext::wait(int numSemaphores, in wait() argument 72 return fDevice->wait(numSemaphores, waitSemaphores); in wait()
|
D | GrVkSecondaryCBDrawContext.h | 85 bool wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]);
|
/external/skqp/include/core/ |
D | SkSurface.h | 699 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, 712 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
|