/external/ImageMagick/MagickCore/ |
delegate.c | 71 #include "MagickCore/semaphore.h" 296 if (p->semaphore != (SemaphoreInfo *) NULL) 297 RelinquishSemaphoreInfo(&p->semaphore); [all...] |
quantum-private.h | 85 *semaphore; member in struct:_QuantumInfo
|
/external/deqp/external/vulkancts/modules/vulkan/wsi/ |
vktWsiSharedPresentableImageTests.cpp | 817 vk::Move<vk::VkSemaphore> semaphore(createSemaphore(m_vkd, *m_device)); 820 VK_CHECK(m_vkd.acquireNextImageKHR(*m_device, *m_swapchain, foreverNs, *semaphore, 0u, &imageIndex)); 870 1, &*semaphore, waitDstStages, 932 willPresent ? 1u : 0u, // Only signal the semaphore if we're going to call QueuePresent. [all...] |
/build/soong/finder/ |
finder.go | 579 // a semaphore can be locked by up to <capacity> callers at once 580 type semaphore struct { type 584 func newSemaphore(capacity int) *semaphore { 585 return &semaphore{pool: make(chan bool, capacity)} 588 func (l *semaphore) Lock() { 592 func (l *semaphore) Unlock() { 601 activeRequests semaphore 623 // However, the semaphore used for synchronization is implemented via a channel and [all...] |
/cts/tests/tests/media/libmediandkjni/ |
native_media_encoder_jni.cpp | 30 #include <semaphore.h>
|
/device/generic/goldfish-opengl/system/vulkan_enc/ |
ResourceTracker.h | 191 VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks *pAllocator);
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
vktSynchronizationCrossInstanceSharingTests.cpp | 211 // Check semaphore support 235 TCU_THROW(NotSupportedError, "Exporting and importing semaphore type not supported"); 1135 const vk::VkSemaphore semaphore = *semaphoreA; local 1162 const vk::VkSemaphore semaphore = *semaphoreB; local [all...] |
/external/ltp/testcases/network/lib6/ |
asapi_01.c | 27 #include <semaphore.h>
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/ |
1-2.c | 44 #include <semaphore.h> 247 UNRESOLVED(errno, "Failed to wait for the semaphore " 417 /* Initialize the semaphore for the timer thread */ 420 UNRESOLVED(ret, "Failed to initialize the semaphore"); 598 "Failed to post the semaphore."); 682 UNRESOLVED(errno, "Final semaphore destroy failed");
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
3-2.c | 53 #include <semaphore.h> 126 UNRESOLVED(errno, "Failed to wait for the semaphore"); 138 UNRESOLVED(errno, "Failed to post the semaphore"); 237 /* Semaphore to force the child to wait */ 240 UNRESOLVED(errno, "Unable to init a semaphore"); 242 /* Semaphore to detect thread ending */ 245 UNRESOLVED(errno, "Unable to init a semaphore"); 269 UNRESOLVED(errno, "Failed to post the semaphore"); 278 UNRESOLVED(errno, "Failed to wait for the semaphore"); 392 UNRESOLVED(errno, "Failed to post the semaphore"); [all...] |
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
s-c1.c | 39 #include <semaphore.h> 124 UNRESOLVED(errno, "Failed to wait for the semaphore"); 277 /* wait for the semaphore */ 285 "Failed to wait for the semaphore");
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/ |
stress.c | 47 #include <semaphore.h> 121 sem_t semsig; /* Semaphore for synchronizing the signal handler */ 153 /* Wait for the semaphore */ 187 UNRESOLVED(errno, "Unable to post semaphore in signal handler"); 408 /* Initialize the semaphore */ 414 output("Semaphore initialized in cell %i\n", id); 476 UNRESOLVED(ret, "Unable to post signal semaphore"); 503 /* Destroy the semaphore and the mutex */ 506 UNRESOLVED(errno, "Unable to destroy the semaphore");
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
s-c1.c | 25 * or if the failure at last semaphore creation is unexpected. 41 #include <semaphore.h> 272 /* Free all semaphore blocs */ 295 "Failed to destroy a semaphore");
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
s-c1.c | 25 * or if the failure at last semaphore creation is unexpected. 41 #include <semaphore.h> 283 /* Free all semaphore blocs */ 305 "Failed to close a semaphore");
|
/external/mesa3d/include/GLES2/ |
gl2ext.h | [all...] |
/external/python/cpython2/Demo/threads/ |
sync.py | 7 # semaphore(n=1) # a semaphore object, with initial count n 197 # A semaphore object is created via 199 # your_semaphore = this_module.semaphore(count=1) 201 # A semaphore has an integer count associated with it. The initial value 203 # 1) passed to the semaphore constructor. 208 # If the semaphore's count is greater than 0, decrements the count 210 # Else if the semaphore's count is 0, blocks the calling thread 215 # Increments the semaphore's count by 1, and wakes up a thread (if 217 # increase the semaphore's count to a value larger than the initia 402 class semaphore: class in inherits: [all...] |
/external/python/cpython3/Python/ |
thread_pthread.h | 54 #include <semaphore.h>
|
/external/skqp/src/gpu/gl/ |
GrGLGpu.cpp | 4300 sk_sp<GrSemaphore> semaphore = this->makeSemaphore(true); local [all...] |
/external/swiftshader/include/GLES2/ |
gl2ext.h | [all...] |
/external/ImageMagick/Magick++/lib/ |
Exception.cpp | 845 LockSemaphoreInfo(exception_->semaphore); 876 UnlockSemaphoreInfo(exception_->semaphore);
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkDeviceDriverImpl.inl | 130 void DeviceDriver::destroySemaphore (VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) const 132 m_vk.destroySemaphore(device, semaphore, pAllocator); [all...] |
vkStructTypes.inl | [all...] |
/external/mesa3d/src/vulkan/wsi/ |
wsi_common.c | 661 VkSemaphore semaphore, 667 semaphore, pImageIndex);
|
/external/skia/src/gpu/vk/ |
GrVkCommandBuffer.cpp | 539 vkSignalSems.push_back(signalSemaphores[i]->semaphore()); 548 vkWaitSems.push_back(waitSemaphores[i]->semaphore()); 558 // mutex and then realizes it doesn't need to submit the semaphore. We will never end up 559 // where a semaphore doesn't think it needs to be submitted (cause of querying [all...] |
/external/skqp/src/gpu/vk/ |
GrVkCommandBuffer.cpp | 536 vkSignalSems.push_back(signalSemaphores[i]->semaphore()); 545 vkWaitSems.push_back(waitSemaphores[i]->semaphore()); 555 // mutex and then realizes it doesn't need to submit the semaphore. We will never end up 556 // where a semaphore doesn't think it needs to be submitted (cause of querying [all...] |